mirror of
https://github.com/go-task/task.git
synced 2024-12-14 10:52:43 +02:00
b259edeb65
Co-authored-by: Dor Sahar <dorsahar@icloud.com>
18 lines
231 B
YAML
18 lines
231 B
YAML
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
|