Skip to content

Commit be8d102

Browse files
committed
src/main/scripts: fix activation of errexit option.
Correction for f296397 commit. Addressed to #351
1 parent 5c3d184 commit be8d102

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/scripts/ci/check-build-and-verify.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
set -o nounset
55

66
# Exit immediately if command returns a non-zero status
7-
set -e errexit
7+
set -o errexit
88

99
# Return value of a pipeline is the value of the last command to exit with a non-zero status
1010
set -o pipefail

src/main/scripts/ci/publish-code-coverage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
set -o nounset
55

66
# Exit immediately if command returns a non-zero status
7-
set -e errexit
7+
set -o errexit
88

99
# Return value of a pipeline is the value of the last command to exit with a non-zero status
1010
set -o pipefail

0 commit comments

Comments
 (0)