Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Utilities/Scripts/update-gitsetup.bash
3148 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 paths="
14
.gitattributes
15
LICENSE
16
NOTICE
17
README
18
setup-hooks
19
setup-user
20
tips
21
"
22
23
extract_source () {
24
git_archive
25
}
26
27
. "${BASH_SOURCE%/*}/update-third-party.bash"
28
29