summaryrefslogtreecommitdiff
path: root/deps/npm/lib/explore.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/lib/explore.js')
-rw-r--r--deps/npm/lib/explore.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/npm/lib/explore.js b/deps/npm/lib/explore.js
index 05b5220d5f..5640d5f157 100644
--- a/deps/npm/lib/explore.js
+++ b/deps/npm/lib/explore.js
@@ -12,6 +12,7 @@ var fs = require('graceful-fs')
var isWindowsShell = require('./utils/is-windows-shell.js')
var escapeExecPath = require('./utils/escape-exec-path.js')
var escapeArg = require('./utils/escape-arg.js')
+var output = require('./utils/output.js')
function explore (args, cb) {
if (args.length < 1 || !args[0]) return cb(explore.usage)
@@ -42,7 +43,7 @@ function explore (args, cb) {
}
if (!shellArgs.length) {
- console.log(
+ output(
'\nExploring ' + cwd + '\n' +
"Type 'exit' or ^D when finished\n"
)