Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Utilities/Scripts/update-vim-syntax.bash
4998 views
1
#!/usr/bin/env bash
2
3
set -e
4
set -x
5
shopt -s dotglob
6
7
readonly name="vim-cmake-syntax"
8
readonly ownership="vim-cmake-syntax upstream <[email protected]>"
9
readonly subtree="Auxiliary/vim"
10
readonly repo="https://github.com/pboettch/vim-cmake-syntax.git"
11
readonly tag="master"
12
readonly shortlog=true
13
readonly exact_tree_match=false
14
readonly paths="
15
indent
16
syntax
17
cmake.vim.in
18
extract-upper-case.pl
19
"
20
21
extract_source () {
22
git_archive
23
}
24
25
. "${BASH_SOURCE%/*}/update-third-party.bash"
26
27