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.
This commit is contained in:
MarcoFalke 2023-07-19 11:22:12 +02:00
parent fadc5232f4
commit ffff4b5dc5
No known key found for this signature in database
2 changed files with 4 additions and 1 deletions

View File

@ -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.

View File

@ -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