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
Poe shows full documentation of all configured tasks when invoked with poe --help. However, invokingpoe <task> --help results in error.
poe --help
poe <task> --help
When dozens of tasks are defined, it's tedious to search for the help of a specific task (yes, can be solved with grep -A).
grep -A
poe ls: error: unrecognized arguments: --help
Usage: poe ls directory Options: directory Directory to list [default: .]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Poe shows full documentation of all configured tasks when invoked with
poe --help
. However, invokingpoe <task> --help
results in error.When dozens of tasks are defined, it's tedious to search for the help of a specific task (yes, can be solved with
grep -A
).How to reproduce
poe <task> --help
, it crashes withpoe ls: error: unrecognized arguments: --help
Desired behaviour
The text was updated successfully, but these errors were encountered: