From 1b4f0c8c75ca8270f90b06cd2efffaf46e5a14c9 Mon Sep 17 00:00:00 2001 From: John Gee Date: Sun, 22 Sep 2019 11:25:30 +1200 Subject: [PATCH] Remove deprecated customFds --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);