diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2020-10-09 08:40:37 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2020-10-09 08:40:37 -0400 |
commit | 0292c9402abc566bbf79dce3fd5bee3c16cf7cbf (patch) | |
tree | aad17bdcd8d026113ad4c3ad05296ceda5f2d9b7 | |
parent | c7892f8b70a0e194411c1b8fdc3fcddfd50e79bc (diff) |
Fix git clone URLs on project pages.
-rw-r--r-- | haunt.scm | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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") |