fix: Correct parentheses in thread condition

This commit is contained in:
Carlos Solís 2025-02-28 08:52:49 -06:00
parent 0ab935e412
commit eedc7f0472

View file

@ -52,7 +52,7 @@ grep -e "https://${site}/${avatarfolder}/" "${tmpfile}" | sed -e "s/.*${site}/${
while read -r i; do
for p in "${i}" "${i//-320/-80}" "${i//-320/-48}"; do
loop_1 "${p}" &
if [[ $(jobs -r -p | wc -l) -ge $(( $(getconf _NPROCESSORS_ONLN) / 2) ]]; then
if [[ $(jobs -r -p | wc -l) -ge $(($(getconf _NPROCESSORS_ONLN) / 2)) ]]; then
wait -n
fi
done