Skip to content

Commit 7c9ee86

Browse files
committed
fix win registry
1 parent 6b1ee6f commit 7c9ee86

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ This document contains a historical list of changes between releases. Only
77
changes that impact end-user behavior are listed; changes to documentation or
88
internal API changes are not present.
99

10+
v0.43.3 (2024-09-26)
11+
-------------------------
12+
13+
### Bugfixes
14+
15+
- Windows installer: Don't quote Alloy's binary path in the Windows Registry. (@jkroepke)
16+
1017
v0.43.2 (2024-09-25)
1118
-------------------------
1219

packaging/grafana-agent-flow/windows/install_script.nsis

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Function InitializeRegistry
135135
nsExec::ExecToLog 'Reg.exe query "${REGKEY}" /reg:64 /ve'
136136
Pop $0
137137
${If} $0 == 1
138-
nsExec::ExecToLog 'Reg.exe add "${REGKEY}" /reg:64 /ve /d "\"$INSTDIR\grafana-agent-flow-windows-amd64.exe\""'
138+
nsExec::ExecToLog 'Reg.exe add "${REGKEY}" /reg:64 /ve /d "$INSTDIR\grafana-agent-flow-windows-amd64.exe"'
139139
Pop $0 # Ignore return result
140140
${EndIf}
141141

0 commit comments

Comments
 (0)