浏览代码

Add script to update vim-cmake-syntax from upstream

Brad King 9 年之前
父节点
当前提交
0966f1c548
共有 1 个文件被更改,包括 24 次插入0 次删除
  1. 24 0
      Utilities/Scripts/update-vim-syntax.bash

+ 24 - 0
Utilities/Scripts/update-vim-syntax.bash

@@ -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 <[email protected]>"
+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"