Skip to content

Commit

Permalink
build: fix windows installer build for NSIS v3.05 (#22821)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
fjl committed May 5, 2021
1 parent 3a2b29c commit 41671d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/nsis.envvarupdate.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
!ifndef Un${StrFuncName}_INCLUDED
${Un${StrFuncName}}
!endif
!define un.${StrFuncName} "${Un${StrFuncName}}"
!define un.${StrFuncName} '${Un${StrFuncName}}'
!macroend

!insertmacro _IncludeStrFunction StrTok
Expand Down

0 comments on commit 41671d4

Please sign in to comment.