Skip to content

Commit

Permalink
lint: Add missing set -ex to ci/lint/06_script.sh
Browse files Browse the repository at this point in the history
This is needed for the container-entrypoint.sh

Also, remove unused `source` from ci/lint_run_all.sh, since it is the
last step.
  • Loading branch information
MarcoFalke committed Jul 19, 2023
1 parent fadc523 commit ffff4b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions ci/lint/06_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

export LC_ALL=C

set -ex

if [ -n "$LOCAL_BRANCH" ]; then
# To faithfully recreate CI linting locally, specify all commits on the current
# branch.
Expand Down
3 changes: 2 additions & 1 deletion ci/lint_run_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ export LC_ALL=C.UTF-8

set -o errexit; source ./ci/test/00_setup_env.sh
set -o errexit; source ./ci/lint/04_install.sh
set -o errexit; source ./ci/lint/06_script.sh
set -o errexit
./ci/lint/06_script.sh

0 comments on commit ffff4b5

Please sign in to comment.