Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed Oct 14, 2024
1 parent 82a3496 commit 4f85b0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/launch_scripts/local-scan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ done
# Wait for all background processes to complete, looping in reverse order

pids=("${!pidmap[@]}") # get keys
reversed_pids=($(for pid in "${pids[@]}"; do echo $pid; done | tac)) # reverse key order
reversed_pids=($(for pid in "${pids[@]}"; do echo $pid; done | tac)) # reverse key order, workers first
for pid in "${reversed_pids[@]}"; do
set -x
wait $pid
Expand Down

0 comments on commit 4f85b0a

Please sign in to comment.