fix leftover script

This commit is contained in:
boubou19 2025-07-24 11:57:43 +02:00
parent 1249f8b168
commit 7705949f3f

View File

@ -24,7 +24,6 @@ jobs:
while IFS= read -r -d '' file; do
echo "Compressing: $file"
if ! optipng -o7 -nc "$file" >/dev/null 2>&1; then
echo "FAILED: $file (exit code $STATUS)"
FAILED_FILES+="$file"$'\n'
fi
done < <(find . -type f -name "*.png" ! -path "./.git/*" -print0)