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
Right now task names are case sensitive. Worried this will cause a lot of confusion in some cases.
Consider the following maidfile:
## Example ```bash echo "example A" ``` ## example ```bash echo "example B" ```
and I run:
maid example outputs example B
maid example
example B
maid Example outputs example A.
maid Example
example A
The text was updated successfully, but these errors were encountered:
My guess is that being case-insensitive would be a better design choice to prevent confusion and case based errors.
Sorry, something went wrong.
No branches or pull requests
Right now task names are case sensitive. Worried this will cause a lot of confusion in some cases.
Consider the following maidfile:
and I run:
maid example
outputsexample B
maid Example
outputsexample A
.The text was updated successfully, but these errors were encountered: