From ca85df10ffe9a714785f30a9c342700b3cd300cf Mon Sep 17 00:00:00 2001 From: Sudarsan Reddy Date: Mon, 9 Aug 2021 15:45:29 +0100 Subject: [PATCH] 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) --- cloudflared.wxs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloudflared.wxs b/cloudflared.wxs index 057fbcb4..b53a74bd 100644 --- a/cloudflared.wxs +++ b/cloudflared.wxs @@ -46,8 +46,8 @@ Name="PATH" Value="[INSTALLDIR]." Permanent="no" - Part="all" - Action="set" + Part="last" + Action="create" System="yes" />