summaryrefslogtreecommitdiff
path: root/haunt.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@vistahigherlearning.com>2020-10-09 08:40:37 -0400
committerDavid Thompson <dthompson@vistahigherlearning.com>2020-10-09 08:40:37 -0400
commit0292c9402abc566bbf79dce3fd5bee3c16cf7cbf (patch)
treeaad17bdcd8d026113ad4c3ad05296ceda5f2d9b7 /haunt.scm
parentc7892f8b70a0e194411c1b8fdc3fcddfd50e79bc (diff)
Fix git clone URLs on project pages.
Diffstat (limited to 'haunt.scm')
-rw-r--r--haunt.scm7
1 files 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")