If no arguments are passed to embark, then display help by default
This commit is contained in:
parent
97de27e0c2
commit
e6d998fd1a
|
@ -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);
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue