Skip to content
Snippets Groups Projects
Commit 869836aa authored by Rick Carback's avatar Rick Carback
Browse files

Fix loop (I think)

parent 5a6586f3
No related branches found
No related tags found
No related merge requests found
......@@ -52,8 +52,8 @@ for cid in 1; do
done
done
echo "WAITING FOR CLIENTS TO EXIT..."
for i in $(seq 0 $CTR); do
echo "WAITING FOR $CTR CLIENTS TO EXIT..."
for i in $(seq 0 $(($CTR - 1))); do
eval echo "Waiting on \${CLIENTS${i}} ..."
eval wait \${CLIENTS${i}}
echo "DONE!"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment