浏览代码

Add script to update GitSetup from upstream

Brad King 8 年之前
父节点
当前提交
a2d393d648
共有 1 个文件被更改,包括 20 次插入0 次删除
  1. 20 0
      Utilities/Scripts/update-gitsetup.bash

+ 20 - 0
Utilities/Scripts/update-gitsetup.bash

@@ -0,0 +1,20 @@
+#!/usr/bin/env bash
+
+set -e
+set -x
+shopt -s dotglob
+
+readonly name="GitSetup"
+readonly ownership="GitSetup Upstream <[email protected]>"
+readonly subtree="Utilities/GitSetup"
+readonly repo="https://gitlab.kitware.com/utils/gitsetup.git"
+readonly tag="setup"
+readonly shortlog=false
+readonly paths="
+"
+
+extract_source () {
+    git_archive
+}
+
+. "${BASH_SOURCE%/*}/update-third-party.bash"