Disable Git interactive auth when fetching deps (#20484)

This is important for branch testing, especially via HTTPS.
pull/20487/head
J. Ryan Stinnett 2022-01-11 12:48:49 +00:00 committed by GitHub
parent 27ad1ebda0
commit 6c1fc8e903
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

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