Add script to update vim-cmake-syntax from upstream

This commit is contained in:
Brad King 2016-08-03 10:23:19 -04:00
parent 65120d180b
commit 0966f1c548
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
#!/usr/bin/env bash
set -e
set -x
shopt -s dotglob
readonly name="vim-cmake-syntax"
readonly ownership="vim-cmake-syntax upstream <kwrobot@kitware.com>"
readonly subtree="Auxiliary/vim"
readonly repo="https://github.com/pboettch/vim-cmake-syntax.git"
readonly tag="master"
readonly shortlog=true
readonly paths="
indent
syntax
cmake.vim.in
extract-upper-case.pl
"
extract_source () {
git_archive
}
. "${BASH_SOURCE%/*}/update-third-party.bash"