install tutorial files #3180

This commit is contained in:
Felipe Morales 2015-08-16 10:43:52 -03:00 committed by Justin M. Keyes
parent 90ef218610
commit 4912dcf3c7
2 changed files with 2 additions and 2 deletions

View File

@ -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."

View File

@ -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})