diff options
author | Jhon Honce <jhonce@redhat.com> | 2020-01-31 15:22:20 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2020-01-31 15:22:20 -0700 |
commit | b9770484365084a3ccf8744b05eb7f437626006c (patch) | |
tree | 49afdc2b5a523dedf6ef4ce69b429fe2140f68e2 /contrib/msi | |
parent | 4699d5e02d3270b5cc89f7528b53b823fbf88796 (diff) | |
download | podman-b9770484365084a3ccf8744b05eb7f437626006c.tar.gz podman-b9770484365084a3ccf8744b05eb7f437626006c.tar.bz2 podman-b9770484365084a3ccf8744b05eb7f437626006c.zip |
Update XML to not embed quote in PATH on windows
* Remove the unsupported commend in lua script
Fixes #4335
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'contrib/msi')
-rw-r--r-- | contrib/msi/podman.wxs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/msi/podman.wxs b/contrib/msi/podman.wxs index ec62a93c5..c2c2cea4f 100644 --- a/contrib/msi/podman.wxs +++ b/contrib/msi/podman.wxs @@ -33,7 +33,7 @@ </Directory> <Property Id="setx" Value="setx.exe"/> - <CustomAction Id="ChangePath" ExeCommand='PATH "%PATH%;[INSTALLDIR]"' Property="setx" Execute="deferred" Impersonate="yes" Return="check"/> + <CustomAction Id="ChangePath" ExeCommand="PATH "%PATH%;[INSTALLDIR] "" Property="setx" Execute="deferred" Impersonate="yes" Return="check"/> <Feature Id="Complete" Level="1"> <ComponentRef Id="INSTALLDIR_Component"/> |