Skip to content

Commit

Permalink
fix(installer): do not quote servicepath in registy (#1765)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkroepke authored and ptodev committed Sep 26, 2024
1 parent 2c0c002 commit fdc776f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ This document contains a historical list of changes between releases. Only
changes that impact end-user behavior are listed; changes to documentation or
internal API changes are not present.

v1.3.4
-----------------

### Bugfixes

- Windows installer: Don't quote Alloy binary path in registy (@jkroepke)

v1.3.3
-----------------

Expand Down
2 changes: 1 addition & 1 deletion packaging/windows/install_script.nsis
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ Function InitializeRegistry
nsExec::ExecToLog 'Reg.exe query "${REGKEY}" /reg:64 /ve'
Pop $0
${If} $0 == 1
nsExec::ExecToLog 'Reg.exe add "${REGKEY}" /reg:64 /ve /d "\"$INSTDIR\alloy-windows-amd64.exe\""'
nsExec::ExecToLog 'Reg.exe add "${REGKEY}" /reg:64 /ve /d "$INSTDIR\alloy-windows-amd64.exe"'
Pop $0 # Ignore return result
${EndIf}

Expand Down

0 comments on commit fdc776f

Please sign in to comment.