summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2020-03-02 01:24:08 +0100
committerAdam Stankiewicz <sheerun@sher.pl>2020-03-02 01:24:08 +0100
commit43ecbfae50fe8dc2a64039af2ee04249e8836cd0 (patch)
treeaf39739ca1160258e6a8e161418cfabf154cf635 /build
parentf77702c090d99e171250c906d54d75cb8e1306ee (diff)
downloadvim-polyglot-43ecbfae50fe8dc2a64039af2ee04249e8836cd0.tar.gz
vim-polyglot-43ecbfae50fe8dc2a64039af2ee04249e8836cd0.zip
Add ctags files, fixes #445
Diffstat (limited to 'build')
-rwxr-xr-xbuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/build b/build
index efbd56ca..cf38cd90 100755
--- a/build
+++ b/build
@@ -2,7 +2,7 @@
set -E
-DIRS="syntax indent compiler autoload ftplugin after/syntax after/indent after/ftplugin"
+DIRS="syntax indent compiler autoload ftplugin ctags after/syntax after/indent after/ftplugin"
# shellcheck disable=SC2034
DIRS_BASIC="syntax compiler indent after/syntax after/indent"
# shellcheck disable=SC2034
@@ -105,7 +105,7 @@ EOF
}
copy_dir() {
- find "$1/$2" \( -name '*.vim' -o -name '*.vital' \) -print0 | while read -r -d $'\0' file; do
+ find "$1/$2" \( -name '*.vim' -o -name '*.vital' -o -name '*.ctags' \) -print0 | while read -r -d $'\0' file; do
copy_file "$1" "$file" "$3"
done
}