From 4912dcf3c77856f1c0e466978f1638fb313a756a Mon Sep 17 00:00:00 2001 From: Felipe Morales Date: Sun, 16 Aug 2015 10:43:52 -0300 Subject: [PATCH] install tutorial files #3180 --- .ci/common/test.sh | 2 +- 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})