From f77eca9256228154f420767fa2d45036b6aed1a7 Mon Sep 17 00:00:00 2001 From: Kittywhiskers Van Gogh <63189531+kwvg@users.noreply.github.com> Date: Sat, 23 Nov 2024 17:49:16 +0000 Subject: [PATCH] fix: make sure that parallelized `lint-all` runs incl. python scripts --- test/lint/lint-all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/lint/lint-all.sh b/test/lint/lint-all.sh index 0d1a3777ed..3472a09908 100755 --- a/test/lint/lint-all.sh +++ b/test/lint/lint-all.sh @@ -30,13 +30,13 @@ if ! command -v parallel > /dev/null; then else SCRIPTS=() - for f in "${SCRIPTDIR}"/lint-*.sh; do + for f in "${SCRIPTDIR}"/lint-*; do if [ "$(basename "$f")" != "$LINTALL" ]; then SCRIPTS+=("$f") fi done - if ! parallel --jobs 100% --will-cite --joblog parallel_out.log bash ::: "${SCRIPTS[@]}"; then + if ! parallel --jobs 100% --will-cite --joblog parallel_out.log ::: "${SCRIPTS[@]}"; then echo "^---- failure generated" EXIT_CODE=1 fi