diff --git a/lib/cmd.js b/lib/cmd.js index fd93a9f0..05bcd33a 100644 --- a/lib/cmd.js +++ b/lib/cmd.js @@ -16,6 +16,12 @@ Cmd.prototype.process = function(args) { this.test(); this.upload(); this.otherCommands(); + + //If no arguments are passed display help by default + if (!process.argv.slice(2).length) { + program.help(); + } + program.parse(args); };