Merge pull request #11236 from YoyinZyc/change-git-clone

scripts: use https for git clone.
This commit is contained in:
Gyuho Lee
2019-10-10 22:52:46 -07:00
committed by GitHub

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"