File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -110,9 +110,12 @@ jobs:
110
110
# https://nsis.sourceforge.io/Special_Builds.
111
111
if [[ "${{ matrix.os }}" == "windows-latest" ]]
112
112
then
113
- curl --location --remote-name https://downloads.sourceforge.net/nsis/NSIS%203/3.08/nsis-3.08-strlen_8192.zip
113
+ # wget is not available but the Stack-supplied MSYS2 will provide it
114
+ stack exec -- wget -O nsis-3.08-strlen_8192.zip https://downloads.sourceforge.net/nsis/NSIS%203/3.08/nsis-3.08-strlen_8192.zip
114
115
7z x -aoa -o"/c/Program Files (x86)/NSIS" nsis-3.08-strlen_8192.zip
115
- makensis -VERSION
116
+ # Clean up
117
+ rm nsis-3.08-strlen_8192.zip
118
+ makensis -VERSION && echo
116
119
# Should include defined symbol NSIS_MAX_STRLEN=8192
117
120
makensis -HDRINFO
118
121
fi
You can’t perform that action at this time.
0 commit comments