From 833102d17544d7aef6d8bfb28f0eac16f1719c79 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Sat, 18 Feb 2017 14:22:45 -0500 Subject: [PATCH] advice on typing --help when a wrong command is inputed --- lib/cmd.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/cmd.js b/lib/cmd.js index 539db0aa..e175baea 100644 --- a/lib/cmd.js +++ b/lib/cmd.js @@ -148,6 +148,7 @@ Cmd.prototype.otherCommands = function() { program .action(function(env){ console.log('unknown command "%s"'.red, env); + console.log("type embark --help to see the available commands"); }); };