Skip to content

Commit

Permalink
standard: minor linter fix
Browse files Browse the repository at this point in the history
Credit: @zkat
  • Loading branch information
zkat committed May 31, 2017
1 parent 9f81483 commit 3cb8432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/npm-cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
if (er) return errorHandler(er)
npm.commands[npm.command](npm.argv, function (err) {
// https://www.youtube.com/watch?v=7nfPu8qTiQU
if (!err && npm.config.get('ham-it-up') && !npm.config.get('json') && !npm.config.get('parseable') && npm.command != 'completion') {
if (!err && npm.config.get('ham-it-up') && !npm.config.get('json') && !npm.config.get('parseable') && npm.command !== 'completion') {
output('\n 🎵 I Have the Honour to Be Your Obedient Servant,🎵 ~ npm 📜🖋\n')
}
errorHandler.apply(this, arguments)
Expand Down

0 comments on commit 3cb8432

Please sign in to comment.