diff options
author | Brad King <brad.king@kitware.com> | 2015-12-17 19:30:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-12-17 19:46:09 (GMT) |
commit | c4282347e27badf2f1e8b8b5a17bb01ce3209eea (patch) | |
tree | 68097c2a4e00ecf51a159f688c71a90b0b8c270c /Utilities/Scripts/update-kwsys.bash | |
parent | f1ee10c15e9c4f7d46962029fbb7a9d312ce878d (diff) | |
download | CMake-c4282347e27badf2f1e8b8b5a17bb01ce3209eea.zip CMake-c4282347e27badf2f1e8b8b5a17bb01ce3209eea.tar.gz CMake-c4282347e27badf2f1e8b8b5a17bb01ce3209eea.tar.bz2 |
Add script to update KWSys from upstream
Diffstat (limited to 'Utilities/Scripts/update-kwsys.bash')
-rwxr-xr-x | Utilities/Scripts/update-kwsys.bash | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Utilities/Scripts/update-kwsys.bash b/Utilities/Scripts/update-kwsys.bash new file mode 100755 index 0000000..650841f --- /dev/null +++ b/Utilities/Scripts/update-kwsys.bash @@ -0,0 +1,22 @@ +#!/usr/bin/env bash + +set -e +set -x +shopt -s dotglob + +readonly name="KWSys" +readonly ownership="KWSys Upstream <kwrobot@kitware.com>" +readonly subtree="Source/kwsys" +readonly repo="http://public.kitware.com/KWSys.git" +readonly tag="master" +readonly shortlog=true +readonly paths=" +" + +extract_source () { + git_archive +} + +export HOOKS_ALLOW_KWSYS=1 + +. "${BASH_SOURCE%/*}/update-third-party.bash" |