-
-
Notifications
You must be signed in to change notification settings - Fork 763
Open
Labels
area: execChanges related to the execution of commands.Changes related to the execution of commands.dep: mvdan/shIssues related to the upstream interpreter used by Task.Issues related to the upstream interpreter used by Task.
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 **/*.goMetadata
Metadata
Assignees
Labels
area: execChanges related to the execution of commands.Changes related to the execution of commands.dep: mvdan/shIssues related to the upstream interpreter used by Task.Issues related to the upstream interpreter used by Task.