update-vim-syntax.bash 492 B

12345678910111213141516171819202122232425
  1. #!/usr/bin/env bash
  2. set -e
  3. set -x
  4. shopt -s dotglob
  5. readonly name="vim-cmake-syntax"
  6. readonly ownership="vim-cmake-syntax upstream <[email protected]>"
  7. readonly subtree="Auxiliary/vim"
  8. readonly repo="https://github.com/pboettch/vim-cmake-syntax.git"
  9. readonly tag="master"
  10. readonly shortlog=true
  11. readonly exact_tree_match=false
  12. readonly paths="
  13. indent
  14. syntax
  15. cmake.vim.in
  16. extract-upper-case.pl
  17. "
  18. extract_source () {
  19. git_archive
  20. }
  21. . "${BASH_SOURCE%/*}/update-third-party.bash"