From d6088b2667311da324f97cdff03bfcc70cacf32a Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Sat, 17 Sep 2011 07:47:35 +0700 Subject: [PATCH] fix spawn call, customFds ain't supported yet --- lib/_debugger.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/_debugger.js b/lib/_debugger.js index 0126310..4b3ae80 100644 --- a/lib/_debugger.js +++ b/lib/_debugger.js @@ -1286,7 +1286,7 @@ Interface.prototype.trySpawn = function(cb) { this.killChild(); - this.child = spawn(process.execPath, args, { customFds: [0, 1, 2] }); + this.child = spawn(process.execPath, args); this.child.stdout.on('data', this.childPrint.bind(this)); this.child.stderr.on('data', this.childPrint.bind(this)); -- 2.7.4