From 5c72c650f69198763fb64fe2956d260e78f2ef83 Mon Sep 17 00:00:00 2001
From: robjmcgibbon <robjmcgibbon@gmail.com>
Date: Wed, 4 Jun 2025 11:12:15 +0200
Subject: [PATCH] https for git pull

---
 make_page.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/make_page.sh b/make_page.sh
index 59bf4d3..2e464b7 100755
--- a/make_page.sh
+++ b/make_page.sh
@@ -21,7 +21,7 @@ python generate_map.py
 python compiler.py
 rsync -auv compiled/* ../
 
-[ ! -d "swift" ] && git clone "git@gitlab.cosma.dur.ac.uk:swift/swiftsim.git" "swift"
+[ ! -d "swift" ] && git clone "https://gitlab.cosma.dur.ac.uk/swift/swiftsim.git" "swift"
 cd swift
 [ "$(git rev-parse --abbrev-ref HEAD)" != "master" ] && git checkout master
 git pull
@@ -40,7 +40,7 @@ cp -r swift/doc/RTD/build/html/ ../docs
 cp swift/doc/onboardingGuide/build/latex/onboarding.pdf ../onboarding.pdf
  
 # Generate read the docs for the zoom branch
-[ ! -d "swift_will" ] && git clone "git@gitlab.cosma.dur.ac.uk:swift/swiftsim.git" "swift_will"
+[ ! -d "swift_will" ] && git clone "https://gitlab.cosma.dur.ac.uk/swift/swiftsim.git" "swift_will"
 cd swift_will
 [ "$(git rev-parse --abbrev-ref HEAD)" != "zoom_docs" ] && git checkout zoom_docs
 git pull
-- 
GitLab