diff options
author | Felipe Morales <hel.sheep@gmail.com> | 2015-08-16 10:43:52 -0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-08-16 14:02:35 -0400 |
commit | 4912dcf3c77856f1c0e466978f1638fb313a756a (patch) | |
tree | 1650d84aadc1791516c6f86a3adec9d9ddd3003a | |
parent | 90ef218610ec0b2bd3947b7be0611457c910564b (diff) | |
download | rneovim-4912dcf3c77856f1c0e466978f1638fb313a756a.tar.gz rneovim-4912dcf3c77856f1c0e466978f1638fb313a756a.tar.bz2 rneovim-4912dcf3c77856f1c0e466978f1638fb313a756a.zip |
install tutorial files #3180
-rw-r--r-- | .ci/common/test.sh | 2 | ||||
-rw-r--r-- | runtime/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.ci/common/test.sh b/.ci/common/test.sh index be23865a77..c1bbd8dc9a 100644 --- a/.ci/common/test.sh +++ b/.ci/common/test.sh @@ -85,7 +85,7 @@ install_nvim() { # Check that all runtime files were installed for file in doc/tags syntax/vim/generated.vim $( - cd runtime ; git ls-files | grep -e '.vim$' -e '.ps$' -e '.dict$' -e '.py$' + cd runtime ; git ls-files | grep -e '.vim$' -e '.ps$' -e '.dict$' -e '.py$' -e '.tutor$' ) ; do if ! test -e "${INSTALL_PREFIX}/share/nvim/runtime/$file" ; then echo "It appears that $file is not installed." diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index 4271418e0c..3e90690c37 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -80,7 +80,7 @@ endforeach() file(GLOB_RECURSE RUNTIME_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} - *.vim *.dict *.py *.ps) + *.vim *.dict *.py *.ps *.tutor) list(APPEND RUNTIME_FILES macros/dvorak) foreach(F ${RUNTIME_FILES}) |