mirror of
https://github.com/go-task/task.git
synced 2026-04-26 20:02:40 +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
|