Skip to content

Commit

Permalink
Merge pull request #1222 from zertosh/dont-use-v-for-version
Browse files Browse the repository at this point in the history
Remove 'v' shortcut for version
  • Loading branch information
terinjokes committed Apr 24, 2015
2 parents 19f6176 + 6b46456 commit 96d1662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/cmd.js
Expand Up @@ -20,7 +20,7 @@ if (b.argv._[0] === 'help' || b.argv.h || b.argv.help
.on('close', function () { process.exit(1) })
;
}
if (b.argv.v || b.argv.version) {
if (b.argv.version) {
return console.log(require('../package.json').version);
}

Expand Down

0 comments on commit 96d1662

Please sign in to comment.