diff --git a/functions/update_apps.sh b/functions/update_apps.sh index 91390eb0..470c342a 100644 --- a/functions/update_apps.sh +++ b/functions/update_apps.sh @@ -29,12 +29,16 @@ do until [[ "$proc_count" -ge "$update_limit" || $it -ge ${#array[@]} ]] do update_apps "${array[$it]}" & - sleep 4 processes+=($!) ((it++)) ((proc_count++)) done ((ttl++)) + if [[ $ttl -eq 1 ]]; then + sleep 15 + else + sleep 6 + fi elif [[ $proc_count != 0 ]]; then # Wait for all processes to finish sleep 6 else # All processes must be completed, break out of loop