Skip to content

Commit f68d1ae

Browse files
committed
Fix shellcheck issues
1 parent 26daf20 commit f68d1ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

MC/run/ANCHOR/tests/test_looper.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ cd ${WORKING_DIR}
102102
# now we submit all the jobs in the background and wait for them to return
103103
declare -A logfiles
104104
declare -A urls
105-
for s in `ls submit*.sh`; do
105+
for s in submit*.sh; do
106106
echo "submitting ${s}"
107107
export GRID_SUBMIT_WORKDIR="${WORKING_DIR}/${s}_workdir"
108108
(
@@ -144,7 +144,7 @@ wait
144144
echo "-- Jobs done ... validating --"
145145

146146
FINAL_SUCCESS=0
147-
for s in `ls submit*.sh`; do
147+
for s in submit*.sh; do
148148
# find output path
149149
TEST_OUTPUT_PATH="${WORKING_DIR}/${s}_workdir" # $(grep "Local working directory is" log_${s} | awk '//{print $5}')
150150

@@ -172,4 +172,4 @@ fi
172172
#TODO: echo "-- Cleaning up ... "
173173
cd ..
174174

175-
exit ${FINAL_SUCCESS}
175+
exit ${FINAL_SUCCESS}

0 commit comments

Comments
 (0)