summaryrefslogtreecommitdiff
path: root/Utilities/Scripts/update-gitsetup.bash
blob: 70fb1651177e3f87494ff37e50d49ce38819a9ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env bash

set -e
set -x
shopt -s dotglob

readonly name="GitSetup"
readonly ownership="GitSetup Upstream <kwrobot@kitware.com>"
readonly subtree="Utilities/GitSetup"
readonly repo="https://gitlab.kitware.com/utils/gitsetup.git"
readonly tag="setup"
readonly shortlog=false
readonly paths="
  .gitattributes
  LICENSE
  NOTICE
  README
  setup-hooks
  setup-user
  tips
"

extract_source () {
    git_archive
}

. "${BASH_SOURCE%/*}/update-third-party.bash"