mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-06 00:32:42 +00:00
20a6ba1dc3
/ = Local scripts ci = Remote scripts (run by workflow) util = Utilities
8 lines
188 B
Bash
Executable File
8 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
SIZES="120 152 167 180 76"
|
|
|
|
cd Passepartout/App/iOS/Assets.xcassets/AppIcon.appiconset
|
|
for S in $SIZES; do
|
|
convert -geometry "${S}x${S}" AppIcon-1024.png AppIcon-$S.png
|
|
done
|