diff --git a/index.js b/index.js index 45863093a..4bd6a14b7 100644 --- a/index.js +++ b/index.js @@ -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);