1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-31 13:44:28 +03:00

Ensure we install the master branch of the e2e tests as a default

This commit is contained in:
Travis Ralston
2018-12-21 19:16:37 -07:00
parent df89d973a0
commit 310f634a0d
2 changed files with 5 additions and 2 deletions

View File

@ -4,6 +4,9 @@ set -e
org="$1"
repo="$2"
defbranch="$3"
[ -z "$defbranch" ] && defbranch="develop"
rm -r "$repo" || true
@ -19,4 +22,4 @@ then
fi
echo "Checking out develop branch"
git clone https://github.com/$org/$repo.git $repo --branch develop
git clone https://github.com/$org/$repo.git $repo --branch $defbranch