revert, un-needed due to condition above it

This commit is contained in:
Heavybullets8 2022-08-10 22:27:49 -06:00
parent c7afe81a38
commit 8af787f2d4

View File

@ -78,12 +78,11 @@ do
sleep 3
elif [[ $it -lt ${#array[@]} ]]; then
loop=0
until [[ $loop -ge 2 || $proc_count -ge $update_limit || $it -ge ${#array[@]} ]];
until [[ $loop -ge 2 || $it -ge ${#array[@]} ]];
do
update_apps "${array[$it]}" &
processes+=($!)
((loop++))
((proc_count++))
((it++))
done
elif [[ $proc_count != 0 ]]; then # Wait for all processes to finish