Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2010-08-11 03:19:50 +0400
committerisaacs <i@izs.me>2010-08-11 03:19:50 +0400
commitf19ad8ec292b3f00c9fd7d3cde5f396942769f7a (patch)
tree89aaf2e5e3519362be06a393d72b65d9de105d83
parent94fbe9583f8f215d71ba9a545909f666fdef9dd0 (diff)
Rollback spawn api change. Guess it isn't there yet.v0.1.24
-rw-r--r--lib/utils/exec.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/utils/exec.js b/lib/utils/exec.js
index e91562bdb..40614e5f6 100644
--- a/lib/utils/exec.js
+++ b/lib/utils/exec.js
@@ -12,9 +12,8 @@ module.exports = function exec (cmd, args, env, pipe, cb) {
]
, cp = require("child_process").spawn( cmd
, args
- , { env : env
- , customFDs : pipe ? null : fds
- }
+ , env
+ , pipe ? null : fds
)
, stdout = ""
, stderr = ""