Skip to content

Instantly share code, notes, and snippets.

@zot24
Created September 24, 2014 14:36
Show Gist options
  • Save zot24/d1123ff3d90b1e3ea115 to your computer and use it in GitHub Desktop.
Save zot24/d1123ff3d90b1e3ea115 to your computer and use it in GitHub Desktop.
Run command in a child process with gulp
gulp.task "run", (command, cb) ->
exec = require('child_process').exec;
exec command, (err, stdout, stderr) ->
console.log(stdout);
console.log(stderr);
cb(err);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment