setup-msysgit: Also set https_proxy

The URLs for the cloned repositories are now HTTPS URLs, therefore we
need to use the proxy also for such URLs if a proxy is required for
cloning to work.
This commit is contained in:
Ivo Bellin Salarin 2014-05-05 11:54:53 +02:00
Родитель 2e1502a81a
Коммит fe4c84aa02
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -65,6 +65,7 @@ git fetch || {
read proxy &&
test ! -z "$proxy" &&
export http_proxy="$proxy" &&
export https_proxy="$proxy" &&
git fetch
} ||
error "Could not get msysgit.git"