From a42a5ce5058d5f20b27dd7804fc859450c742d1f Mon Sep 17 00:00:00 2001 From: redtide Date: Sun, 21 May 2023 03:45:04 +0200 Subject: [PATCH] Update scripts/create_windows_icon.sh for Inkscape 1.0+ --- scripts/create_windows_icon.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/create_windows_icon.sh b/scripts/create_windows_icon.sh index 710fbdc..0e837ba 100755 --- a/scripts/create_windows_icon.sh +++ b/scripts/create_windows_icon.sh @@ -10,7 +10,7 @@ rm -f "$svg_file".icon.*.png for size in $sizes; do 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" done