mirror of
https://github.com/element-hq/element-web
synced 2024-11-21 16:55:34 +03:00
Step 10.4: Fix end-to-end test branch matching
This commit is contained in:
parent
63091e7b66
commit
7aeb2c3cde
1 changed files with 4 additions and 1 deletions
|
@ -57,7 +57,10 @@ BRANCH_ARRAY=(${head//:/ })
|
|||
TRY_ORG=$deforg
|
||||
TRY_BRANCH=${BRANCH_ARRAY[0]}
|
||||
if [[ "$head" == *":"* ]]; then
|
||||
TRY_ORG=${BRANCH_ARRAY[0]}
|
||||
# ... but only match that fork if it's a real fork
|
||||
if [ "${BRANCH_ARRAY[0]}" != "matrix-org" ]; then
|
||||
TRY_ORG=${BRANCH_ARRAY[0]}
|
||||
fi
|
||||
TRY_BRANCH=${BRANCH_ARRAY[1]}
|
||||
fi
|
||||
clone ${TRY_ORG} $defrepo ${TRY_BRANCH}
|
||||
|
|
Loading…
Reference in a new issue