Skip to content

Commit 18eb307

Browse files
committed
Fix image magick conversion commands
1 parent 6a83cb3 commit 18eb307

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

resources/deploy.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
set INKSCAPE_PATH="C:\Program Files\Inkscape\bin\inkscape.exe"
44

5-
@REM Generating images for NSIS installer
5+
@REM Generating images for Wix installer
66
%INKSCAPE_PATH% "WixUIBanner.svg" -o "temp.png" -w 493 -h 58
7-
magick convert "temp.png" bmp3:"banner.bmp"
7+
magick "temp.png" bmp3:"banner.bmp"
88
%INKSCAPE_PATH% "WixUIDialog.svg" -o "temp.png" -w 493 -h 312
9-
magick convert "temp.png" bmp3:"dialog.bmp"
9+
magick "temp.png" bmp3:"dialog.bmp"
1010
del "temp.png"
1111
move /y *.bmp ..\wix

0 commit comments

Comments
 (0)