neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit aede28ab3bb28cd944279f2936efb733ee5c53c7
parent 4cf1bcf1836a8f8fc89425a4c83b9975583a5f28
Author: sitiom <sitiom@disroot.org>
Date:   Mon, 25 Apr 2022 08:53:09 +0800

fix(packaging): remove excess forward slash in Wix Patch (#18121)


Diffstat:
Mpackaging/WixPatch.xml | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/packaging/WixPatch.xml b/packaging/WixPatch.xml @@ -1,8 +1,6 @@ <CPackWiXPatch> <!-- Fragment ID is from: <your build dir>/_CPack_Packages/win64/WIX/files.wxs --> <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 Id='UpdatePath' Name='PATH' @@ -10,7 +8,7 @@ Permanent='no' System='yes' Part='last' - Value='[INSTALL_ROOT]/bin' + Value='[INSTALL_ROOT]bin' /> </CPackWiXFragment> </CPackWiXPatch>