advice on typing --help when a wrong command is inputed

This commit is contained in:
Iuri Matias 2017-02-18 14:22:45 -05:00
parent 561caa9b0b
commit 833102d175
1 changed files with 1 additions and 0 deletions

View File

@ -148,6 +148,7 @@ Cmd.prototype.otherCommands = function() {
program program
.action(function(env){ .action(function(env){
console.log('unknown command "%s"'.red, env); console.log('unknown command "%s"'.red, env);
console.log("type embark --help to see the available commands");
}); });
}; };