Update scripts/create_windows_icon.sh for Inkscape 1.0+

This commit is contained in:
redtide 2023-05-21 03:45:04 +02:00
parent dc38a9da71
commit a42a5ce505
No known key found for this signature in database

View file

@ -10,7 +10,7 @@ rm -f "$svg_file".icon.*.png
for size in $sizes; do for size in $sizes; do
png_file="$svg_file".icon."$size".png png_file="$svg_file".icon."$size".png
inkscape -e "$png_file" "$svg_file" -w "$size" -h "$size" inkscape -o "$png_file" "$svg_file" -w "$size" -h "$size"
optipng "$png_file" optipng "$png_file"
done done