Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Utilities/Scripts/update-gitsetup.bash
4997 views
1
#!/usr/bin/env bash
2
3
set -e
4
set -x
5
shopt -s dotglob
6
7
readonly name="GitSetup"
8
readonly ownership="GitSetup Upstream <[email protected]>"
9
readonly subtree="Utilities/GitSetup"
10
readonly repo="https://gitlab.kitware.com/utils/gitsetup.git"
11
readonly tag="setup"
12
readonly shortlog=false
13
readonly exact_tree_match=false
14
readonly paths="
15
.gitattributes
16
LICENSE
17
NOTICE
18
README
19
setup-hooks
20
setup-user
21
tips
22
"
23
24
extract_source () {
25
git_archive
26
}
27
28
. "${BASH_SOURCE%/*}/update-third-party.bash"
29
30