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 Sep 26, 2024
1 parent 7906095 commit 6d87c35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ Main (unreleased)

### Bugfixes

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

- Update yet-another-cloudwatch-exporter from v0.60.0 vo v0.61.0: (@morremeyer)
- Fixes a bug where cloudwatch S3 metrics are reported as `0`


### Other changes

- Small fix in UI stylesheet to fit more content into visible table area. (@defanator)
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 6d87c35

Please sign in to comment.