Change exec back to spawn because we aren't using the callback.

This commit is contained in:
Sashko Stubailo
2015-01-28 13:22:20 -08:00
parent 634c6d623b
commit ebc04682c8

View File

@@ -1111,7 +1111,7 @@ _.extend(Run.prototype, {
var env = _.clone(process.env);
_.extend(env, self.env);
self.proc = child_process.execFile(files.convertToOSPath(self.execPath),
self.proc = child_process.spawn(files.convertToOSPath(self.execPath),
self._args, {
cwd: files.convertToOSPath(self.cwd),
env: env