diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-12-21 17:59:33 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-12-21 17:59:33 +0100 |
commit | 1916673a1696eab66516c3f96bec1f2e4b92f761 (patch) | |
tree | 2b46a105100276ca7533cceed393b46b9100d654 /nsis | |
parent | af610b8e66a7fefcb8db07ee65686f51e1cb288a (diff) | |
download | vim-git-1916673a1696eab66516c3f96bec1f2e4b92f761.tar.gz |
patch 8.1.0617: NSIS installer gets two files from the wrong directoryv8.1.0617
Problem: NSIS installer gets two files from the wrong directory.
Solution: Change ${VIMRT} to "..\".
Diffstat (limited to 'nsis')
-rw-r--r-- | nsis/gvim.nsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi index 12a55bb61..17e3e7238 100644 --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -327,8 +327,8 @@ Section "$(str_section_exe)" id_section_exe File ${VIMSRC}\vimrun.exe File /oname=tee.exe ${VIMSRC}\teew32.exe File /oname=xxd.exe ${VIMSRC}\xxdw32.exe - File ${VIMRT}\vimtutor.bat - File ${VIMRT}\README.txt + File ..\vimtutor.bat + File ..\README.txt File ..\uninstal.txt File ${VIMRT}\*.vim File ${VIMRT}\rgb.txt |