Skip to content

Instantly share code, notes, and snippets.

@lele85
Created December 6, 2013 13:52
Show Gist options
  • Select an option

  • Save lele85/7824138 to your computer and use it in GitHub Desktop.

Select an option

Save lele85/7824138 to your computer and use it in GitHub Desktop.
Task Alloy generazione assets
task("pre:compile",function(event,logger){
/*COMPILA GLI ASSETS*/
var exec = require('child_process').exec;
function puts(error, stdout, stderr) {
logger.info("---- GENERAZIONE ASSETS COMPLETATA ----");
}
exec("cd assets_src && ./convert.sh", puts);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment