scripts: use https for git clone.

This commit is contained in:
yoyinzyc 2019-10-10 16:45:48 -07:00
parent 943832af44
commit 3827d6bd2d

View File

@ -51,7 +51,7 @@ main() {
if [ ! -d "${reldir}/etcd" ]; then
mkdir -p "${reldir}"
cd "${reldir}"
git clone git@github.com:etcd-io/etcd.git --branch "${BRANCH}"
git clone https://github.com/etcd-io/etcd.git --branch "${BRANCH}"
fi
cd "${reldir}/etcd"