diff --git a/CHANGELOG.md b/CHANGELOG.md index d0a514884..061ec26b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/packaging/windows/install_script.nsis b/packaging/windows/install_script.nsis index 3f3a114d0..8c3ad4c4e 100644 --- a/packaging/windows/install_script.nsis +++ b/packaging/windows/install_script.nsis @@ -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}