summaryrefslogtreecommitdiffstats
path: root/nsis
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-09-27 13:08:36 +0200
committerBram Moolenaar <Bram@vim.org>2019-09-27 13:08:36 +0200
commit30e8e73506e4522ef4aebf7d525c0e6ffe8805fd (patch)
tree572d933103927bda359c6f5bdcbf51447f703912 /nsis
parent46a426c9acfdd3d6c0fa134a17681634b9325bee (diff)
patch 8.1.2082: some files have a weird name to fit in 8.3 charactersv8.1.2082
Problem: Some files have a weird name to fit in 8.3 characters. Solution: Use a nicer names.
Diffstat (limited to 'nsis')
-rw-r--r--nsis/gvim.nsi6
1 files changed, 3 insertions, 3 deletions
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi
index 8e6f6d0d16..ed53ab5fab 100644
--- a/nsis/gvim.nsi
+++ b/nsis/gvim.nsi
@@ -341,13 +341,13 @@ Section "$(str_section_exe)" id_section_exe
File ${VIMSRC}\vim${BIT}.dll
!endif
File /oname=install.exe ${VIMSRC}\installw32.exe
- File /oname=uninstal.exe ${VIMSRC}\uninstalw32.exe
+ File /oname=uninstall.exe ${VIMSRC}\uninstallw32.exe
File ${VIMSRC}\vimrun.exe
File /oname=tee.exe ${VIMSRC}\teew32.exe
File /oname=xxd.exe ${VIMSRC}\xxdw32.exe
File ..\vimtutor.bat
File ..\README.txt
- File ..\uninstal.txt
+ File ..\uninstall.txt
File ${VIMRT}\*.vim
File ${VIMRT}\rgb.txt
@@ -955,7 +955,7 @@ Section "un.$(str_unsection_register)" id_unsection_register
# delete the context menu entry and batch files
DetailPrint "$(str_msg_unregistering)"
- nsExec::Exec "$0\uninstal.exe -nsis"
+ nsExec::Exec "$0\uninstall.exe -nsis"
Pop $3
# We may have been put to the background when uninstall did something.