Files
element-web/scripts/fetchdep.sh
T

29 lines
646 B
Bash
Raw Normal View History

2018-05-02 11:03:40 +01:00
#!/bin/sh
org="$1"
repo="$2"
defbranch="$3"
[ -z "$defbranch" ] && defbranch="develop"
2018-05-02 11:03:40 +01:00
2018-05-02 16:49:08 +01:00
rm -r "$repo" || true
2018-12-20 22:13:40 +00:00
clone() {
branch=$1
if [ -n "$branch" ]
then
echo "Trying to use the branch $branch"
git clone https://github.com/$org/$repo.git $repo --branch "$branch" && exit 0
fi
}
2018-05-02 15:53:38 +01:00
2019-03-15 11:19:05 -06:00
# Try the PR author's branch in case it exists on the deps as well.
2019-03-15 11:19:05 -06:00
clone $BUILDKITE_BRANCH
# Try the target branch of the push or PR.
clone $BUILDKITE_PULL_REQUEST_BASE_BRANCH
2018-12-20 22:13:40 +00:00
# Try the current branch from Jenkins.
clone `"echo $GIT_BRANCH" | sed -e 's/^origin\///'`
# Use the default branch as the last resort.
clone $defbranch