1
0
mirror of https://github.com/element-hq/element-web.git synced 2025-11-25 09:43:33 +03:00

Disable Git interactive auth when fetching deps (#20484)

This is important for branch testing, especially via HTTPS.
This commit is contained in:
J. Ryan Stinnett
2022-01-11 12:48:49 +00:00
committed by GitHub
parent 27ad1ebda0
commit 6c1fc8e903

View File

@@ -25,7 +25,8 @@ function clone() {
if [ -n "$branch" ]
then
echo "Trying to use $org/$repo#$branch"
git clone https://github.com/$org/$repo.git $repo --branch $branch \
# Disable auth prompts: https://serverfault.com/a/665959
GIT_TERMINAL_PROMPT=0 git clone https://github.com/$org/$repo.git $repo --branch $branch \
"${GIT_CLONE_ARGS[@]}"
return $?
fi