Skip to content

Commit

Permalink
Remove deprecated customFds
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowspawn committed Sep 21, 2019
1 parent 36ae7a9 commit 1b4f0c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Expand Up @@ -634,9 +634,9 @@ Command.prototype.executeSubCommand = function(argv, args, unknown, executableFi
// add executable arguments to spawn
args = incrementNodeInspectorPort(process.execArgv).concat(args);

proc = spawn(process.argv[0], args, { stdio: 'inherit', customFds: [0, 1, 2] });
proc = spawn(process.argv[0], args, { stdio: 'inherit' });
} else {
proc = spawn(bin, args, { stdio: 'inherit', customFds: [0, 1, 2] });
proc = spawn(bin, args, { stdio: 'inherit' });
}
} else {
args.unshift(bin);
Expand Down

0 comments on commit 1b4f0c8

Please sign in to comment.