feat(repo): Use new icon filenames

This commit is contained in:
jmir1 2024-01-10 14:38:38 +01:00
parent 79f5f09bee
commit a3a0ff4bb7
No known key found for this signature in database
GPG Key ID: 7B3B624787A072BD

View File

@ -30,7 +30,10 @@ for APK in ${APKS[@]}; do
LANG=$(echo $APK | grep -Po "aniyomi-\K[^\.]+")
ICON=$(echo "$BADGING" | grep -Po "application-icon-320.*'\K[^']+")
unzip -p $APK $ICON > icon/${FILENAME%.*}.png
unzip -p $APK $ICON > icon/${PKGNAME}.png
# TODO: legacy icons; remove after a while
cp icon/${PKGNAME}.png icon/${FILENAME%.*}.png
SOURCE_INFO=$(jq ".[\"$PKGNAME\"]" < ../output.json)