From 0292c9402abc566bbf79dce3fd5bee3c16cf7cbf Mon Sep 17 00:00:00 2001 From: David Thompson Date: Fri, 9 Oct 2020 08:40:37 -0400 Subject: Fix git clone URLs on project pages. --- haunt.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/haunt.scm b/haunt.scm index 3baf246..f73644c 100644 --- a/haunt.scm +++ b/haunt.scm @@ -281,13 +281,12 @@ make install"))))) (h2 "License") (p ,license) (h2 "Git Repository") - ,@(let ((web-url (string-append "https://git.dthompson.us/" repo ".git")) - (clone-url (string-append "git://dthompson.us/" repo ".git"))) + ,@(let ((url (string-append "https://git.dthompson.us/" repo ".git"))) `((p ,name " is developed using the Git version control system. The official repository is hosted at " - ,(anchor web-url web-url) ".") + ,(anchor url url) ".") (p "To clone the repository, run:") - (pre "git clone " ,clone-url))) + (pre "git clone " ,url))) (h2 "Community") (p "Real-time discussion for " ,name " can be found on the " (code "#guile") -- cgit v1.2.3