minor tweaking...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2020-08-06 03:33:31 +03:00
parent b3a55d4821
commit 927aff890c

View File

@ -37,8 +37,7 @@ argv.Parser({
'-verbose': function(){ '-verbose': function(){
console.log('>>> VERBOSE:', ...arguments) console.log('>>> VERBOSE:', ...arguments)
return 'verbose' return 'verbose' },
},
'-c': '@command', '-c': '@command',
'@cmd': '@command', '@cmd': '@command',
@ -46,8 +45,7 @@ argv.Parser({
priority: -50, priority: -50,
handler: function(){ handler: function(){
console.log('>>> COMMAND:', ...arguments) console.log('>>> COMMAND:', ...arguments)
return 'command' return 'command' },
},
}, },
'-r': '-required', '-r': '-required',