mirror of
https://github.com/go-task/task.git
synced 2025-08-10 22:42:19 +02:00
Add ability to set error_only: true
on the group
output mode
This commit is contained in:
17
testdata/output_group_error_only/Taskfile.yml
vendored
Normal file
17
testdata/output_group_error_only/Taskfile.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
version: '3'
|
||||
|
||||
silent: true
|
||||
|
||||
output:
|
||||
group:
|
||||
error_only: true
|
||||
|
||||
tasks:
|
||||
passing: echo 'passing-output'
|
||||
|
||||
failing:
|
||||
cmds:
|
||||
- task: passing
|
||||
- echo 'passing-output-2'
|
||||
- echo 'passing-output-3'
|
||||
- echo 'failing-output' && exit 1
|
Reference in New Issue
Block a user