From af3c84505d7fe2c305058ca0ec77bfbd200db1b0 Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Tue, 17 Sep 2019 14:34:16 -0700 Subject: [PATCH] toplevel: set autospec pushurl to ssh instead of https Signed-off-by: Patrick McCarty --- Makefile.toplevel | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.toplevel b/Makefile.toplevel index b02b64f..e20d599 100644 --- a/Makefile.toplevel +++ b/Makefile.toplevel @@ -34,7 +34,7 @@ $(proj_PKGS): git clone $(PRJ_BASE_URL)/$$proj projects/$$proj; \ cd projects/$$proj; \ if [ "$$proj" = "autospec" ] ; then \ - git remote set-url --push origin https://github.com/clearlinux/autospec.git; \ + git remote set-url --push origin git@github.com:clearlinux/autospec.git; \ else \ $(call gitoliteurl,projects/$$proj); \ fi; \ @@ -83,7 +83,7 @@ ${PULL_PKGS}: git --no-pager log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit $$O..$$N; echo; \ fi ; \ if [ "$$p" = "projects/autospec" ] ; then \ - git remote set-url --push origin https://github.com/clearlinux/autospec.git; \ + git remote set-url --push origin git@github.com:clearlinux/autospec.git; \ else \ $(call gitoliteurl,$$p); \ fi ; \