summaryrefslogtreecommitdiff
path: root/deps/npm/bin/npm-cli.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/bin/npm-cli.js')
-rwxr-xr-xdeps/npm/bin/npm-cli.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/deps/npm/bin/npm-cli.js b/deps/npm/bin/npm-cli.js
index 55fa054d66..8c8fa8031e 100755
--- a/deps/npm/bin/npm-cli.js
+++ b/deps/npm/bin/npm-cli.js
@@ -16,11 +16,15 @@
process.title = 'npm'
+ var unsupported = require('../lib/utils/unsupported.js')
+ unsupported.checkForBrokenNode()
+
var log = require('npmlog')
log.pause() // will be unpaused when config is loaded.
-
log.info('it worked if it ends with', 'ok')
+ unsupported.checkForUnsupportedNode()
+
var path = require('path')
var npm = require('../lib/npm.js')
var npmconf = require('../lib/config/core.js')