9 lines
161 B
Bash
9 lines
161 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
SIZES="57 72 76 114 120 144 152"
|
||
|
|
||
|
for SIZE in $SIZES
|
||
|
do
|
||
|
convert ./icon_orig.png -resize ${SIZE}x${SIZE} app/static/apple-touch-icon-${SIZE}.png
|
||
|
done
|