Skip to content

Commit ca85df1

Browse files
TUN-4911: Append Environment variable to Path instead of overwriting it
Environment Setting last specifies which part of the variable to append to. It was previously set to all which meant replace. (Ref: https://wixtoolset.org/documentation/manual/v3/xsd/wix/environment.html) . (#432)
1 parent b8333b4 commit ca85df1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cloudflared.wxs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
Name="PATH"
4747
Value="[INSTALLDIR]."
4848
Permanent="no"
49-
Part="all"
50-
Action="set"
49+
Part="last"
50+
Action="create"
5151
System="yes" />
5252
</Component>
5353
</Directory>

0 commit comments

Comments
 (0)