From 30994d686c9199edae887e7322ef046c91988566 Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Thu, 4 Jan 2024 22:14:28 +0100 Subject: patch 9.1.0008: NSIS installer includes syntax testdir Problem: NSIS installer includes syntax test dumps (Yegappan Lakshmanan) Solution: Exclude syntax/testdir when creating the NSIS installer fixes: vim/vim-win32-installer#328 closes: #13814 Signed-off-by: Christian Brabandt --- nsis/gvim.nsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nsis') diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi index 3a6dc29856..adb38a4a11 100644 --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -416,7 +416,7 @@ Section "$(str_section_exe)" id_section_exe File ${VIMSRC}\vim.ico SetOutPath $0\syntax - File /r ${VIMRT}\syntax\*.* + File /r /x testdir ${VIMRT}\syntax\*.* SetOutPath $0\spell File ${VIMRT}\spell\*.txt -- cgit v1.2.3