We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given an app "todo" that has a command "list" that has a subcommand "tasks" that has a switch "--long", GLI prints this as the synopsis:
todo [global options] list [command options] [--long] tasks
This is just wrong - --long has to come after tasks. Should be:
--long
todo [global options] list [command options] tasks [--long]
The text was updated successfully, but these errors were encountered:
0b9f74e
Once CI passes, I'll do a release
Sorry, something went wrong.
No branches or pull requests
Given an app "todo" that has a command "list" that has a subcommand "tasks" that has a switch "--long", GLI prints this as the synopsis:
This is just wrong -
--long
has to come after tasks. Should be:The text was updated successfully, but these errors were encountered: