From 478ef95d8b421926bb0e462ddb628db5ca9706aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20K=C3=BCgler?= Date: Wed, 25 Feb 2026 16:45:34 +0100 Subject: [PATCH] Fix missing '[@]' introduced in #777. --- recon_surf/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recon_surf/functions.sh b/recon_surf/functions.sh index 797d0bbc..db3b073f 100644 --- a/recon_surf/functions.sh +++ b/recon_surf/functions.sh @@ -161,7 +161,7 @@ function RunBatchJobs() # wait till all processes have finished local unsuccessful=() - for i in $(seq "${#PIDS}") + for i in $(seq "${#PIDS[@]}") do echo "Waiting for PID ${PIDS[i-1]} of (${PIDS[*]}) to complete..." wait "${PIDS[i-1]}"