mirror of
https://github.com/go-task/task.git
synced 2025-12-25 16:09:26 +01:00
20 lines
311 B
YAML
20 lines
311 B
YAML
default:
|
|
deps: [hello]
|
|
|
|
hello:
|
|
deps: [set-equal]
|
|
cmds:
|
|
- echo {{.FOO}} > foo.txt
|
|
- echo {{.BAR}} > bar.txt
|
|
- echo {{.FOO2}} > foo2.txt
|
|
- echo {{.BAR2}} > bar2.txt
|
|
- echo {{.EQUAL}} > equal.txt
|
|
vars:
|
|
FOO: foo
|
|
BAR: $echo bar
|
|
|
|
set-equal:
|
|
set: EQUAL
|
|
cmds:
|
|
- echo foo=bar
|