Open
Description
Description
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?
❯ task
task: [default] echo *.go
dummy.go
Version
3.41.0
Operating system
Linux
Experiments Enabled
No response
Example Taskfile
version: '3'
set: [pipefail]
shopt: [globstar]
tasks:
default: echo **/*.go