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>2020-07-11 00:05:57 +0300
committerisaacs <i@izs.me>2020-07-29 21:53:10 +0300
commitcebd437d98b70859e2a3fbd847f5795cdf59dbd6 (patch)
tree646ce0346217768117f2ed02553dfefb72d3d935 /lib/bin.js
parent25371c0b36cd9e2dc973a9f576a9f080b65c0722 (diff)
Remove the log-stream config, fix some references to removed modules
Diffstat (limited to 'lib/bin.js')
-rw-r--r--lib/bin.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bin.js b/lib/bin.js
index 7258893b9..c15a7752c 100644
--- a/lib/bin.js
+++ b/lib/bin.js
@@ -18,6 +18,6 @@ function bin (args, silent, cb) {
process.nextTick(cb.bind(this, null, b))
if (npm.config.get('global') && PATH.indexOf(b) === -1) {
- npm.config.get('logstream').write('(not in PATH env variable)\n')
+ process.stderr.write('(not in PATH env variable)\n')
}
}