Merge pull request #2809 from jryans/git-proto

Switch to `git` protocol for CI dependencies
This commit is contained in:
J. Ryan Stinnett 2019-03-20 20:53:25 +00:00 committed by GitHub
commit 4c4d4407bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@ clone() {
if [ -n "$branch" ] if [ -n "$branch" ]
then then
echo "Trying to use $org/$repo#$branch" echo "Trying to use $org/$repo#$branch"
git clone https://github.com/$org/$repo.git $repo --branch "$branch" && exit 0 git clone git://github.com/$org/$repo.git $repo --branch "$branch" && exit 0
fi fi
} }