Open
Description
Description
After creating this Taskfile.yml
:
version: "3"
env: { FOO: foo }
tasks:
print_foobar:
env: { FOOBAR: { sh: echo "$FOO"bar } }
cmd: echo "$FOOBAR"
and running task print_foobar
, I get the output:
task: [print_foobar] echo "$FOOBAR"
bar
when I was expecting
task: [print_foobar] echo "$FOOBAR"
foobar
Version
3.39.2
Operating system
NixOS
Experiments Enabled
None
Example Taskfile
version: "3"
env: { FOO: foo }
tasks:
print_foobar:
env: { FOOBAR: { sh: echo "$FOO"bar } }
cmd: echo "$FOOBAR"