From ebc04682c86f5ed152cbe83044164ae0b4036ca0 Mon Sep 17 00:00:00 2001 From: Sashko Stubailo Date: Wed, 28 Jan 2015 13:22:20 -0800 Subject: [PATCH] Change exec back to spawn because we aren't using the callback. --- tools/selftest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/selftest.js b/tools/selftest.js index 252c701260..f485d7a5f8 100644 --- a/tools/selftest.js +++ b/tools/selftest.js @@ -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