-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
bugCommander is not working as intendedCommander is not working as intended
Description
How to reproduce
- Put the code below in
index.js, install commander, runnode index.js - Result:
error: missing required argument 'some' - Change command
inspecttosomeothercommand - Result: Actual log of the commander object
var program = require('commander');
program
.command('inspect <some>')
.description('Test bug')
.action(function(some, options) {});
console.log(program);Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugCommander is not working as intendedCommander is not working as intended