diff options
Diffstat (limited to 'deps/npm/lib/explore.js')
-rw-r--r-- | deps/npm/lib/explore.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/npm/lib/explore.js b/deps/npm/lib/explore.js index 767d9a876a..e87e839354 100644 --- a/deps/npm/lib/explore.js +++ b/deps/npm/lib/explore.js @@ -27,7 +27,7 @@ function explore (args, cb) { "Type 'exit' or ^D when finished\n") npm.spinner.stop() - var shell = spawn(sh, args, { cwd: cwd, customFds: [0, 1, 2] }) + var shell = spawn(sh, args, { cwd: cwd, stdio: "inherit" }) shell.on("close", function (er) { // only fail if non-interactive. if (!args.length) return cb() |