gulp-run
gulp-run copied to clipboard
Pipe to shell commands in gulp
On [this line](https://github.com/MrBoolean/gulp-run/blob/master/command.js#L28) in command.js `this.options.env` is assigned `process.env`. Immediately afterwards `this.options.env.PATH` is modified. As `process.env` wasn't defensively copied when it was assigned this modifies the global `process.env.PATH`. So if...
If a run task outputs too much data to stdout, it seems to hang with no notices or messages or anything. Originally I thought it was related to maxBuffer, but...
If `options.cwd` is specified then it is prepended in front of `node_modules/.bin` in the path. But this means (if `options.cwd` is not absolute) when changed to the new working directory...
First off, thank you for the great plugin! I'm running a child process which has some terminal colors when run on its own, but those colors are lost when running...
I am running a **python file on shell** by the following `python ./tools/make-firefox-meta.py ../adaware.firefox_debug/` but when I put it **into gulp-run, with following as a task** ``` gulp.task("python-bsff", ["make-pre-bsff"], function(){...
Hi, Can you add an option to print the command only if it has an stderr (with the stderr of course)? I am compelled to run a command that takes...
I am trying to concatenate the output of gulp-run with files coming from gulp.src. To do this, I use `merge-stream` and `gulp-concat`. I get the following error: ``` events.js:72 throw...
**The problem occurs because the child gulp script requires working directory change:** gulp --gulpfile "\gulpfile.js" build **[13:40:01] Working directory changed to ** [13:40:03] Using gulpfile \gulpfile.js [13:40:03] Starting 'build'... [13:40:03]...
Hi, I cant get the running command output. I'm trying to get info from git: " stream = run('git -C .docs status'); stream.exec();//.on('error', onError); file = stream.read(); var content= file.contents.read();...
Hi, there is an error, when I run this in node v0.12 or io.js 1.6. it works, when I run it with node 0.10 ``` events.js:85 throw er; // Unhandled...