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 28 29 30 31 32 33 34
|
#!/usr/bin/env bash
# We can optionally pass in the desired repository and branch. For example,
#
# ./Modules/ThirdParty/MetaIO/UpdateFromUpstream.sh \
# https://github.com/Kitware/MetaIO.git \
# pull/30/head:large-uncompression
thirdparty_module_name='MetaIO'
set -x
if [[ $# -ge 1 ]]; then
upstream_git_url=$1
else
upstream_git_url='https://github.com/Kitware/MetaIO.git'
fi
if [[ $# -ge 2 ]]; then
upstream_git_branch=$2
else
upstream_git_branch='master'
fi
snapshot_author_name='MetaIO Maintainers'
snapshot_author_email='metaio@itk.org'
snapshot_redact_cmd=''
snapshot_relative_path='src/MetaIO'
snapshot_paths='
src
License.txt
'
source "${BASH_SOURCE%/*}/../../../Utilities/Maintenance/UpdateThirdPartyFromUpstream.sh"
update_from_upstream
|