From 98505f79718e194627943250e7e8ea3c75b17357 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 13 Dec 2016 15:07:22 -0500 Subject: [PATCH] Add script to update GitSetup from upstream --- update-gitsetup.bash | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 update-gitsetup.bash diff --git a/update-gitsetup.bash b/update-gitsetup.bash new file mode 100755 index 0000000..aa83cb8 --- /dev/null +++ b/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 " +readonly subtree="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" -- GitLab