Skip to content

Commit 706b0aa

Browse files
committed
Yet another CI fix
1 parent 5dc8fdf commit 706b0aa

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ case $1 in
3434
fi
3535
do_build
3636
ntldd -R bin/* | grep ucrt64 | awk -F '=> ' '{ print $2 }' | awk '{ print $1 }' | sed 's/\\/\\\\/g' | xargs -I deps cp deps bin
37+
magick package/icon.png -define icon:auto-resize=16,32,48,64,256 ICO:- > "$TEMP/icon.ico"
38+
magick package/icon.png -resize 150x57 -extent 150x57 -gravity center -background white -alpha remove -alpha off BMP2:- > "$TEMP/icon.bmp"
3739
makensis package/installer.nsi
3840
;;
3941

package/installer.nsi

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
!include MUI2.nsh
22

3-
!system 'convert icon.png -define icon:auto-resize=16,32,48,64,256 %TEMP%/icon.ico'
4-
!system 'convert -resize 150x57 -extent 150x57 -gravity center -background white -alpha remove -alpha off icon.png BMP2:%TEMP%/icon.bmp'
5-
63
!define MUI_PRODUCT "Thoughtbound"
74
!define MUI_FILE "thoughtbound"
85
!define MUI_VERSION $%VERSION%

0 commit comments

Comments
 (0)