mirror of
https://github.com/neovim/neovim.git
synced 2025-12-10 08:32:42 +00:00
fix(packaging): remove excess forward slash in Wix Patch (#18121)
This commit is contained in:
@@ -1,8 +1,6 @@
|
|||||||
<CPackWiXPatch>
|
<CPackWiXPatch>
|
||||||
<!-- Fragment ID is from: <your build dir>/_CPack_Packages/win64/WIX/files.wxs -->
|
<!-- Fragment ID is from: <your build dir>/_CPack_Packages/win64/WIX/files.wxs -->
|
||||||
<CPackWiXFragment Id="CM_CP_bin.nvim.exe">
|
<CPackWiXFragment Id="CM_CP_bin.nvim.exe">
|
||||||
<!-- Note: if we were to specify Value='[INSTALL_ROOT]\bin' - with a backslash, the installer will still
|
|
||||||
use a forward slash in the path. -->
|
|
||||||
<Environment
|
<Environment
|
||||||
Id='UpdatePath'
|
Id='UpdatePath'
|
||||||
Name='PATH'
|
Name='PATH'
|
||||||
@@ -10,7 +8,7 @@
|
|||||||
Permanent='no'
|
Permanent='no'
|
||||||
System='yes'
|
System='yes'
|
||||||
Part='last'
|
Part='last'
|
||||||
Value='[INSTALL_ROOT]/bin'
|
Value='[INSTALL_ROOT]bin'
|
||||||
/>
|
/>
|
||||||
</CPackWiXFragment>
|
</CPackWiXFragment>
|
||||||
</CPackWiXPatch>
|
</CPackWiXPatch>
|
||||||
|
|||||||
Reference in New Issue
Block a user