proxy/make.js: add help output

This commit is contained in:
Jascha 2019-12-13 04:47:50 +01:00 committed by David Fifield
parent 1e45d48a3c
commit 37aaaffa15

View file

@ -192,4 +192,10 @@ if (tasks.has(cmd)) {
t.func(); t.func();
} else { } else {
console.error('Command not supported.'); console.error('Command not supported.');
console.log('Commands:');
tasks.forEach(function(value, key) {
console.log(key + ' - ' + value.msg);
})
} }