diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-02-26 20:25:35 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-02-26 20:25:35 +0100 |
commit | d0bce504ec52def729fffa35c8896979af348d32 (patch) | |
tree | e60bc2cd373c13945cb7eee04f597b70a7c22922 /nsis | |
parent | 0e62a6742bca186624e97e2121c98ada30e009a0 (diff) | |
download | vim-git-d0bce504ec52def729fffa35c8896979af348d32.tar.gz |
patch 8.2.2551: MS-Windows: colors test file is not installedv8.2.2551
Problem: MS-Windows: colors test file is not installed.
Solution: Also copy runtime/colors/tools. (Ken Takata, closes #7902)
Diffstat (limited to 'nsis')
-rw-r--r-- | nsis/gvim.nsi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi index 4521fc273..498d98dc8 100644 --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -359,6 +359,8 @@ Section "$(str_section_exe)" id_section_exe SetOutPath $0\colors File ${VIMRT}\colors\*.* + SetOutPath $0\colors\tools + File ${VIMRT}\colors\tools\*.* SetOutPath $0\compiler File ${VIMRT}\compiler\*.* |