diff options
author | Luis Calle <53507599+TheLeoP@users.noreply.github.com> | 2024-05-30 23:45:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-31 12:45:30 +0800 |
commit | a18652ed619b4c94c74080b637f446503e2bc605 (patch) | |
tree | 0066ba7022759cd54b308b785106e7618ce52413 /cmake.packaging | |
parent | 88fe467b194f21cace92109dffc68e8b1362be3e (diff) | |
download | rneovim-a18652ed619b4c94c74080b637f446503e2bc605.tar.gz rneovim-a18652ed619b4c94c74080b637f446503e2bc605.tar.bz2 rneovim-a18652ed619b4c94c74080b637f446503e2bc605.zip |
fix(win-msi): add bin to PATH per-machine after installation (#29099)
#22856 made it possible for the msi installer to perform per-user
installations, which caused problems for users that already had
per-machine installations trying to update (the Windows Installer does
not support major upgrades across installation context, see #22933 and
https://stackoverflow.com/a/15498911). It was then reverted in #22949,
but the scope of the modification to the PATH environment variable was
not reverted.
Diffstat (limited to 'cmake.packaging')
-rw-r--r-- | cmake.packaging/WixPatch.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake.packaging/WixPatch.xml b/cmake.packaging/WixPatch.xml index 1196f4f335..89c47753ce 100644 --- a/cmake.packaging/WixPatch.xml +++ b/cmake.packaging/WixPatch.xml @@ -6,7 +6,7 @@ Name='PATH' Action='set' Permanent='no' - System='no' + System='yes' Part='last' Value='[INSTALL_ROOT]bin' /> |