Disable Git interactive auth when fetching deps (#20484)
This is important for branch testing, especially via HTTPS.pull/20487/head
parent
27ad1ebda0
commit
6c1fc8e903
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue