diff --git a/constructor/nsis/main.nsi.tmpl b/constructor/nsis/main.nsi.tmpl index 762ffe667..3ebfe1a07 100644 --- a/constructor/nsis/main.nsi.tmpl +++ b/constructor/nsis/main.nsi.tmpl @@ -1862,7 +1862,7 @@ Section "Uninstall" ${If} ${FileExists} "$INSTDIR" # Stop logging or the uninstaller will not remove the install.log file # without requiring a reboot - LogSet Off + ${LogSet} off RMDir /r /REBOOTOK "$INSTDIR" ${EndIf} {%- else %} @@ -1895,7 +1895,7 @@ Section "Uninstall" # Stop logging or the uninstaller will not remove the install.log file # without requiring a reboot - LogSet Off + ${LogSet} off # In case the last command fails, run the slow method to remove leftover RMDir /r /REBOOTOK "$INSTDIR" diff --git a/news/1141-logset-off b/news/1141-logset-off new file mode 100644 index 000000000..d3bfea1b6 --- /dev/null +++ b/news/1141-logset-off @@ -0,0 +1,19 @@ +### Enhancements + +* + +### Bug fixes + +* EXE: Update calls to built-in function `LogSet` to instead call the intended macro definition `${LogSet}$`. (#1141) + +### Deprecations + +* + +### Docs + +* + +### Other + +*