task
task copied to clipboard
Support error_ignore for a task call.
Support task calls with ignore_error.
- Parse
ignore_errorinto the cmd object for task calls. - Handle the error condition after a task call, ignoring if
error_ignorewas set.
fixes #363
Example task definition
version: "3"
tasks:
bad:
cmds:
- exit 1
default:
cmds:
- task: bad
ignore_error: true
- echo hello