Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
fix spawn call, customFds ain't supported yet
Browse files Browse the repository at this point in the history
  • Loading branch information
indutny authored and ry committed Sep 17, 2011
1 parent cde81a6 commit d6088b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/_debugger.js
Expand Up @@ -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));
Expand Down

0 comments on commit d6088b2

Please sign in to comment.