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>2011-10-03 05:49:30 +0400
committerisaacs <i@izs.me>2011-10-03 05:49:30 +0400
commitc4d501aada9c85e6ca3a340c080158f9f5b73a5c (patch)
tree24e43d3e71d3b2db33c9f549e4b53b2fb27613c8
parent1c7182661714b751643077892c3fe3e603a6d694 (diff)
npm usage banner: userconfig path might be long
-rw-r--r--lib/help.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/help.js b/lib/help.js
index 52c18b97d..d1e56ff3f 100644
--- a/lib/help.js
+++ b/lib/help.js
@@ -92,8 +92,8 @@ function help (args, cb) {
, "npm help <term> search for help on <term>"
, "npm help npm involved overview"
, ""
- , "Specify configs in the ini-formatted file at "
- + npm.config.get("userconfig")
+ , "Specify configs in the ini-formatted file:"
+ , " " + npm.config.get("userconfig")
, "or on the command line via: npm <command> --key value"
, "Config info can be viewed via: npm help config"
].join("\n"), function () { cb(er) })