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