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
[Edit: typo] Hi. Thanks for this great tool!
Consider the following pair of taskfiles:
## Taskfile.yml version: '3' includes: test: test # test: # taskfile: test
and
## test/Taskfile.yml version: '3' vars: BAR: FOO/{{.BAR}} tasks: foobar: echo {{.BAR}}
and run task test:foobar:
task test:foobar
$ BAR=BAZ task test:foobar task: [test:foobar] echo FOO/BAZ FOO/BAZ
Looks good so far. Now uncomment the commented lines in the root taskfile above. remove the original include definition, and rerun the above test:
$ BAR=BAZ task test:foobar task: [test:foobar] echo FOO/FOO/BAZ FOO/FOO/BAZ
oops.
$ task --version Task version: v3.36.0 (h1:XVJ5hQ5hdzTAulHpAGzbUMUuYr9MUOEQFOFazI3hUsY=)
$ task --experiments * GENTLE_FORCE: off * REMOTE_TASKFILES: off * ANY_VARIABLES: off
The text was updated successfully, but these errors were encountered:
No branches or pull requests
[Edit: typo]
Hi. Thanks for this great tool!
Consider the following pair of taskfiles:
and
and run
task test:foobar
:$ BAR=BAZ task test:foobar task: [test:foobar] echo FOO/BAZ FOO/BAZ
Looks good so far. Now uncomment the commented lines in the root taskfile above. remove the original include definition, and rerun the above test:
$ BAR=BAZ task test:foobar task: [test:foobar] echo FOO/FOO/BAZ FOO/FOO/BAZ
oops.
linux
The text was updated successfully, but these errors were encountered: