File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
packaging/grafana-agent-flow/windows Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ This document contains a historical list of changes between releases. Only
7
7
changes that impact end-user behavior are listed; changes to documentation or
8
8
internal API changes are not present.
9
9
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
+
10
17
v0.43.2 (2024-09-25)
11
18
-------------------------
12
19
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ Function InitializeRegistry
135
135
nsExec::ExecToLog 'Reg.exe query "${REGKEY}" /reg:64 /ve'
136
136
Pop $0
137
137
${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"'
139
139
Pop $0 # Ignore return result
140
140
${EndIf}
141
141
You can’t perform that action at this time.
0 commit comments