-
-
Notifications
You must be signed in to change notification settings - Fork 793
Open
1 / 11 of 1 issue completed
Copy link
Labels
area: execChanges related to the execution of commands.Changes related to the execution of commands.
Description
Description
Taskfile:
version '3'
set:
- errexit
- nounset
- pipefail
- xtrace
...
foo:
cmd: echo RUNNING FOO
status:
- cat non-existent-file | jq '{}'
...Running this:
$ task foo
task: Task "foo" is up to dateAs a user, I expected pipefail to be applied and used for status commands as well, not just for cmd/cmds.
Version
3.45.4
Operating system
macOS
Experiments Enabled
No response
Example Taskfile
version '3'
set:
- errexit
- nounset
- pipefail
- xtrace
tasks:
foo:
cmd: echo RUNNING FOO
status:
- cat non-existent-file | jq '{}'Reactions are currently unavailable
Sub-issues
Metadata
Metadata
Assignees
Labels
area: execChanges related to the execution of commands.Changes related to the execution of commands.