mirror of
https://github.com/neovim/neovim.git
synced 2024-12-26 14:11:15 -07:00
c3aef56199
#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.
(cherry picked from commit a18652ed61
)
15 lines
359 B
XML
15 lines
359 B
XML
<CPackWiXPatch>
|
|
<!-- Fragment ID is from: <your build dir>/_CPack_Packages/win64/WIX/files.wxs -->
|
|
<CPackWiXFragment Id="CM_CP_bin.nvim.exe">
|
|
<Environment
|
|
Id='UpdatePath'
|
|
Name='PATH'
|
|
Action='set'
|
|
Permanent='no'
|
|
System='yes'
|
|
Part='last'
|
|
Value='[INSTALL_ROOT]bin'
|
|
/>
|
|
</CPackWiXFragment>
|
|
</CPackWiXPatch>
|