From 3827d6bd2dc0816b8010d71e6ed657f5907ea1b3 Mon Sep 17 00:00:00 2001 From: yoyinzyc Date: Thu, 10 Oct 2019 16:45:48 -0700 Subject: [PATCH] scripts: use https for git clone. --- scripts/release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release b/scripts/release index b69871bc1..1cff5f7dd 100755 --- a/scripts/release +++ b/scripts/release @@ -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"