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
For me, shell option globstar does not work.
I followed this documentation: https://taskfile.dev/usage/#set-and-shopt
❯ task task: [default] echo **/*.go **/*.go
If I adjust it to just echo *.go the expansion works. So it is just globstar that is broken?
echo *.go
❯ task task: [default] echo *.go dummy.go
3.41.0
Linux
No response
version: '3' set: [pipefail] shopt: [globstar] tasks: default: echo **/*.go
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
For me, shell option globstar does not work.
I followed this documentation: https://taskfile.dev/usage/#set-and-shopt
If I adjust it to just
echo *.go
the expansion works. So it is just globstar that is broken?Version
3.41.0
Operating system
Linux
Experiments Enabled
No response
Example Taskfile
The text was updated successfully, but these errors were encountered: