mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-21 21:50:59 -05:00
fix: don't immediately exit on errors (#5336)
Don't immediately exit on errors because this will hide diagnostic information, and linter output. Fix #5335 ci: add docs updates to changelog
This commit is contained in:
parent
608bd502d8
commit
4a05d78ed4
3 changed files with 5 additions and 2 deletions
|
@ -24,6 +24,10 @@
|
||||||
{
|
{
|
||||||
"section": "🧰 Maintenance",
|
"section": "🧰 Maintenance",
|
||||||
"type": "ci"
|
"type": "ci"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"section": "🧰 Maintenance",
|
||||||
|
"type": "docs"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"packages": {
|
"packages": {
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -o errexit
|
|
||||||
set -o nounset
|
set -o nounset
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
|
@ -658,6 +657,7 @@ UpdateLoopsForImage() {
|
||||||
# shellcheck disable=SC2317
|
# shellcheck disable=SC2317
|
||||||
cleanup() {
|
cleanup() {
|
||||||
local -ri EXIT_CODE=$?
|
local -ri EXIT_CODE=$?
|
||||||
|
debug "Captured exit code: ${EXIT_CODE}"
|
||||||
|
|
||||||
if [ -n "${GITHUB_WORKSPACE:-}" ]; then
|
if [ -n "${GITHUB_WORKSPACE:-}" ]; then
|
||||||
debug "Removing temporary files and directories"
|
debug "Removing temporary files and directories"
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -o errexit
|
|
||||||
set -o nounset
|
set -o nounset
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue