Skip to content

Commit ffff4b5

Browse files
author
MarcoFalke
committed
lint: Add missing set -ex to ci/lint/06_script.sh
This is needed for the container-entrypoint.sh Also, remove unused `source` from ci/lint_run_all.sh, since it is the last step.
1 parent fadc523 commit ffff4b5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ci/lint/06_script.sh

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
export LC_ALL=C
88

9+
set -ex
10+
911
if [ -n "$LOCAL_BRANCH" ]; then
1012
# To faithfully recreate CI linting locally, specify all commits on the current
1113
# branch.

ci/lint_run_all.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ export LC_ALL=C.UTF-8
88

99
set -o errexit; source ./ci/test/00_setup_env.sh
1010
set -o errexit; source ./ci/lint/04_install.sh
11-
set -o errexit; source ./ci/lint/06_script.sh
11+
set -o errexit
12+
./ci/lint/06_script.sh

0 commit comments

Comments
 (0)