Skip to content

Commit 41671d4

Browse files
authored
build: fix windows installer build for NSIS v3.05 (ethereum#22821)
With the update to a newer AppVeyor build image, creating the Windows installer no longer worked because of a string quoting error in EnvVarUpdate.nsh. This applies the fix recommended in https://stackoverflow.com/questions/62081765.
1 parent 3a2b29c commit 41671d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/nsis.envvarupdate.nsh

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
!ifndef Un${StrFuncName}_INCLUDED
4444
${Un${StrFuncName}}
4545
!endif
46-
!define un.${StrFuncName} "${Un${StrFuncName}}"
46+
!define un.${StrFuncName} '${Un${StrFuncName}}'
4747
!macroend
4848

4949
!insertmacro _IncludeStrFunction StrTok

0 commit comments

Comments
 (0)