-
-
Notifications
You must be signed in to change notification settings - Fork 743
Closed as not planned
Labels
state: awaiting responseWaiting for issue author to respond.Waiting for issue author to respond.
Description
- Task version: 3.14.1.r21.g421cb52-1
- Operating System: archlinux
Example Taskfile showing the issue
version: '3'
tasks:
foo:
vars:
BAR: default
cmds:
- echo "{{.BAR}}"
I'm trying to override variable BAR
:
➜ task foo
task: [foo] echo "default"
default
➜ TASK_BAR=baz task foo
task: [foo] echo "default"
default
➜ BAR=baz task foo
task: [foo] echo "default"
default
➜ task BAR=baz foo
task: [foo] echo "default"
default
➜ task TASK_BAR=baz foo
task: [foo] echo "default"
default
➜ task foo TASK_BAR=baz
task: [foo] echo "default"
default
➜ task foo BAR=baz
task: [foo] echo "default"
default
Is there any way to do it?
ssbarnea, prologic, cvirtucio, boukeversteegh, fredleger and 1 more
Metadata
Metadata
Assignees
Labels
state: awaiting responseWaiting for issue author to respond.Waiting for issue author to respond.