diff --git a/proxy/make.js b/proxy/make.js index f8b2192..6111913 100755 --- a/proxy/make.js +++ b/proxy/make.js @@ -192,4 +192,10 @@ if (tasks.has(cmd)) { t.func(); } else { console.error('Command not supported.'); + + console.log('Commands:'); + + tasks.forEach(function(value, key) { + console.log(key + ' - ' + value.msg); + }) }