aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.ci/common/test.sh2
-rw-r--r--runtime/CMakeLists.txt2
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})