From 9eb501f4f69b728ae6622e31072c34b956efa271 Mon Sep 17 00:00:00 2001 From: Sandro Wenzel Date: Wed, 13 Aug 2025 16:46:51 +0200 Subject: [PATCH] Fix shellcheck issues --- MC/run/ANCHOR/tests/test_looper.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MC/run/ANCHOR/tests/test_looper.sh b/MC/run/ANCHOR/tests/test_looper.sh index c817c9edc..43abfad5f 100755 --- a/MC/run/ANCHOR/tests/test_looper.sh +++ b/MC/run/ANCHOR/tests/test_looper.sh @@ -102,7 +102,7 @@ cd ${WORKING_DIR} # now we submit all the jobs in the background and wait for them to return declare -A logfiles declare -A urls -for s in `ls submit*.sh`; do +for s in submit*.sh; do echo "submitting ${s}" export GRID_SUBMIT_WORKDIR="${WORKING_DIR}/${s}_workdir" ( @@ -144,7 +144,7 @@ wait echo "-- Jobs done ... validating --" FINAL_SUCCESS=0 -for s in `ls submit*.sh`; do +for s in submit*.sh; do # find output path TEST_OUTPUT_PATH="${WORKING_DIR}/${s}_workdir" # $(grep "Local working directory is" log_${s} | awk '//{print $5}') @@ -172,4 +172,4 @@ fi #TODO: echo "-- Cleaning up ... " cd .. -exit ${FINAL_SUCCESS} \ No newline at end of file +exit ${FINAL_SUCCESS}