Skip to content

Commit

Permalink
Merge pull request #1052 from shadowspawn/feature/customFds
Browse files Browse the repository at this point in the history
Removed deprecated customFds
  • Loading branch information
abetomo committed Sep 22, 2019
2 parents 36ae7a9 + 1b4f0c8 commit 85d4c2b
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 85d4c2b

Please sign in to comment.