-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--help with additional --options gives 'command not found' #97
Comments
Hmm, the invocation in your example is missing a command, which I think is what commander is complaining about. If you run the following does it work?
|
It outputs nothing, exit code 0. Altering the test file a little:
ACommand:
Good 👍 BCommand:
This is as expected. 👍 CCommand:
Expectation is the help output you get with: DCommand:
Curious, would maybe expect SummaryA and B are normal behaviour. |
I often find mysql wanting to put
--help
on the end of a command to see the help text for that command. With commander, if I do that though, I first have to remove any --option options passed or I get 'command not found'Example:
Results in:
Is there any way to make this possible?
The text was updated successfully, but these errors were encountered: