Skip to content

Commit 88e7798

Browse files
ptodevjkroepke
andauthored
[release/v1.3] Fix Windows installer (#1768)
* fix(installer): do not quote servicepath in registy (#1765) * Update VERSION file --------- Co-authored-by: Jan-Otto Kröpke <[email protected]>
1 parent 2c0c002 commit 88e7798

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
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+
v1.3.4
11+
-----------------
12+
13+
### Bugfixes
14+
15+
- Windows installer: Don't quote Alloy's binary path in the Windows Registry. (@jkroepke)
16+
1017
v1.3.3
1118
-----------------
1219

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
#
2121
# Lines starting with "#" and blank lines are ignored.
2222

23-
v1.3.3
23+
v1.3.4

docs/sources/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Grafana Alloy
44
description: Grafana Alloy is a a vendor-neutral distribution of the OTel Collector
55
weight: 350
66
cascade:
7-
ALLOY_RELEASE: v1.3.3
7+
ALLOY_RELEASE: v1.3.4
88
OTEL_VERSION: v0.105.0
99
FULL_PRODUCT_NAME: Grafana Alloy
1010
PRODUCT_NAME: Alloy

packaging/windows/install_script.nsis

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ Function InitializeRegistry
156156
nsExec::ExecToLog 'Reg.exe query "${REGKEY}" /reg:64 /ve'
157157
Pop $0
158158
${If} $0 == 1
159-
nsExec::ExecToLog 'Reg.exe add "${REGKEY}" /reg:64 /ve /d "\"$INSTDIR\alloy-windows-amd64.exe\""'
159+
nsExec::ExecToLog 'Reg.exe add "${REGKEY}" /reg:64 /ve /d "$INSTDIR\alloy-windows-amd64.exe"'
160160
Pop $0 # Ignore return result
161161
${EndIf}
162162

0 commit comments

Comments
 (0)