fix xargs
All checks were successful
Update Community Skins README / Full CI/CD Pipeline (push) Successful in 3s

This commit is contained in:
2025-06-20 17:24:55 +02:00
parent fbaab89326
commit 7dd6c5110b

View File

@@ -72,8 +72,8 @@ jobs:
continue
fi
echo "$repos_json" | jq -c '.[]' | xargs -n1 -P4 -I{} bash -c '
repo_data="{}"
echo "$repos_json" | jq -c '.[]' | xargs -P4 -I{} bash -c '
repo_data="$1"
owner=$(echo "$repo_data" | jq -r ".owner.login")
repo=$(echo "$repo_data" | jq -r ".name")
html_url=$(echo "$repo_data" | jq -r ".html_url")
@@ -127,8 +127,7 @@ jobs:
"$padded_rank" "$html_url" "$osu_id" "$timestamp" >> "$avatar_rows_file"
echo " ✅ Match: $username (Rank #$pp_rank)"
exit 0
'
' _ '{}'
done
page=$((page + 1))
done