From 3437b8f08a5596399135f53b3244105d622c6da0 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Sat, 18 Oct 2014 01:41:23 -0700 Subject: [PATCH] use https to clone the test blog repo --- bin/create-test-blog.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/create-test-blog.sh b/bin/create-test-blog.sh index 2db42fd..0bc0948 100755 --- a/bin/create-test-blog.sh +++ b/bin/create-test-blog.sh @@ -9,7 +9,7 @@ if [[ -e "$BLOG_PATH" ]]; then else if [[ ! -e "$ORIGIN_BLOG_PATH" ]]; then echo ">>> Mirroring local origin..." - git clone --mirror git@github.com:samsonjs/samhuri.net.git "$ORIGIN_BLOG_PATH" + git clone --mirror https://github.com/samsonjs/samhuri.net.git "$ORIGIN_BLOG_PATH" fi echo ">>> Cloning test blog from local origin..." git clone "$ORIGIN_BLOG_PATH" "$BLOG_PATH"