Use HTTPS proxy (not http proxy) for git pull

This commit is contained in:
Martin Lablans 2022-10-06 12:49:48 +02:00
parent f7c4bf6ac5
commit 7b15e02bec
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ for DIR in /etc/bridgehead $(pwd); do
git -C $DIR pull 2>&1
else
log "INFO" "Git is using proxy ${HTTP_PROXY_URL} from ${CONFFILE}"
git -c http.proxy=$HTTP_PROXY_URL -c http.proxy=$HTTP_PROXY_URL -C $DIR fetch 2>&1
git -c http.proxy=$HTTP_PROXY_URL -c http.proxy=$HTTP_PROXY_URL -C $DIR pull 2>&1
git -c http.proxy=$HTTP_PROXY_URL -c https.proxy=$HTTPS_PROXY_URL -C $DIR fetch 2>&1
git -c http.proxy=$HTTP_PROXY_URL -c https.proxy=$HTTPS_PROXY_URL -C $DIR pull 2>&1
fi
new_git_hash="$(git -C $DIR rev-parse --verify HEAD)"
git_updated="false"