mirror of
https://github.com/dh1tw/iso-country-flags-svg-collection-1.git
synced 2025-12-06 03:42:01 +01:00
16 lines
289 B
Bash
Executable file
16 lines
289 B
Bash
Executable file
#!/bin/sh
|
|
|
|
RESOS="1280x960,640x480,320x240,160x120,80x60,40x30,20x15"
|
|
STYLE="none glossy simple flat fancy"
|
|
|
|
for s in $STYLE; do
|
|
echo "Processing style $s ..";
|
|
scripts/build.pl \
|
|
--cmd svg2png \
|
|
--out build \
|
|
--res $RESOS \
|
|
--svgs build/svg-country-4x2-$s
|
|
done
|
|
|
|
echo " ok.";
|