mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Change exec back to spawn because we aren't using the callback.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user