From 587843bca0a0f469aa1bfd36bbc7907b8f5a25b6 Mon Sep 17 00:00:00 2001 From: Pete Bacon Darwin Date: Mon, 4 Feb 2019 13:31:07 +0000 Subject: [PATCH] chore(scripts): use https for git repo URLs --- scripts/bower/publish.sh | 2 +- scripts/code.angularjs.org/publish.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bower/publish.sh b/scripts/bower/publish.sh index e0077d85a..f9dce7d8b 100755 --- a/scripts/bower/publish.sh +++ b/scripts/bower/publish.sh @@ -27,7 +27,7 @@ function prepare { for repo in "${REPOS[@]}" do echo "-- Cloning bower-$repo" - git clone git@github.com:angular/bower-$repo.git $TMP_DIR/bower-$repo --depth=1 + git clone https://github.com/angular/bower-$repo.git $TMP_DIR/bower-$repo --depth=1 done diff --git a/scripts/code.angularjs.org/publish.sh b/scripts/code.angularjs.org/publish.sh index 13420e725..f5c5f19a9 100755 --- a/scripts/code.angularjs.org/publish.sh +++ b/scripts/code.angularjs.org/publish.sh @@ -25,7 +25,7 @@ function init { function prepare { echo "-- Cloning code.angularjs.org" - git clone git@github.com:angular/code.angularjs.org.git $REPO_DIR --depth=1 + git clone https://github.com/angular/code.angularjs.org $REPO_DIR --depth=1 echo "-- Updating code.angularjs.org"