Skip to content

Commit 3cb8432

Browse files
committedMay 31, 2017
standard: minor linter fix
Credit: @zkat
1 parent 9f81483 commit 3cb8432

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎bin/npm-cli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
if (er) return errorHandler(er)
8484
npm.commands[npm.command](npm.argv, function (err) {
8585
// https://www.youtube.com/watch?v=7nfPu8qTiQU
86-
if (!err && npm.config.get('ham-it-up') && !npm.config.get('json') && !npm.config.get('parseable') && npm.command != 'completion') {
86+
if (!err && npm.config.get('ham-it-up') && !npm.config.get('json') && !npm.config.get('parseable') && npm.command !== 'completion') {
8787
output('\n 🎵 I Have the Honour to Be Your Obedient Servant,🎵 ~ npm 📜🖋\n')
8888
}
8989
errorHandler.apply(this, arguments)

0 commit comments

Comments
 (0)
Please sign in to comment.