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
list
It would be great to support wildcards for the list command. E.g. consider the following dodo.py file.
dodo.py
def task_hello(): return {"actions": [lambda: None]}
Running the task with a wildcard works as desired.
$ doit run "hel*" . hello
But trying to list with a wildcard suggests that a task hello does not exist.
hello
$ doit list "hel*" ERROR: 'hel*' is not a task.
Having feature parity across the two commands would be useful. Thanks for continuing to maintain this build tool!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be great to support wildcards for the list command. E.g. consider the following
dodo.py
file.Running the task with a wildcard works as desired.
But trying to list with a wildcard suggests that a task
hello
does not exist.Having feature parity across the two commands would be useful. Thanks for continuing to maintain this build tool!
The text was updated successfully, but these errors were encountered: