1
0
mirror of https://github.com/go-task/task.git synced 2024-12-14 10:52:43 +02:00
task/testdata/exit_code/Taskfile.yml

18 lines
231 B
YAML
Raw Normal View History

version: '3'
silent: true
vars:
PREFIX: EXIT_CODE=
tasks:
exit-zero:
cmds:
- defer: echo {{.PREFIX}}{{.EXIT_CODE}}
- exit 0
exit-one:
cmds:
- defer: echo {{.PREFIX}}{{.EXIT_CODE}}
- exit 1