We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If a task fails converge will exit with a 0 code. I think we should exit non-zero if any task fails.
example:
task "check" { check = "[[ -f /bad ]]" apply = "bad-command" }
$ converge apply --local test.hcl ... Summary: 2 errors, 1 changes * root/task.check: root/task.check still has changes after apply * root: error in dependency "root/task.check" $ echo $? 0
The text was updated successfully, but these errors were encountered:
return non-zero exit code if apply graph has an error
d0f712e
fixes #365
cf25a34
Successfully merging a pull request may close this issue.
If a task fails converge will exit with a 0 code. I think we should exit non-zero if any task fails.
example:
The text was updated successfully, but these errors were encountered: