Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions constructor/nsis/main.nsi.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down Expand Up @@ -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"

Expand Down
19 changes: 19 additions & 0 deletions news/1141-logset-off
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
### Enhancements

* <news item>

### Bug fixes

* EXE: Update calls to built-in function `LogSet` to instead call the intended macro definition `${LogSet}$`. (#1141)

### Deprecations

* <news item>

### Docs

* <news item>

### Other

* <news item>
Loading