2
0

Cleaner iOS icon for iOS 7.

This commit is contained in:
Maarten Billemont
2013-11-09 20:50:53 -05:00
parent c1162c76d3
commit b38ef59c93
16 changed files with 4 additions and 3 deletions

View File

@@ -26,10 +26,11 @@ icons=(
)
for size in $(reverse "${!icons[@]}"); do
file=Images.xcassets/AppIcon.appiconset/${icons[size]}
echo "$PWD/$file"
if [[ "iTunesArtwork@2x" -nt $file ]]; then
if [[ "iTunesArtwork@2x.png" -nt $file ]]; then
pinf "$file ($size px)"
downsize "iTunesArtwork@2x" "$file" "${size}x${size}"
downsize "iTunesArtwork@2x.png" "$file" "${size}x${size}"
fnip
fi
done