From 1aefd3e52075f28af9bc90e50126f9810b159846 Mon Sep 17 00:00:00 2001 From: Muhammad Attiyah Date: Wed, 30 May 2018 15:52:44 +0200 Subject: [PATCH] Remove call to truename to fix CNAME generation. --- plugins/gh-pages.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/gh-pages.lisp b/plugins/gh-pages.lisp index 0b12c40..794561d 100644 --- a/plugins/gh-pages.lisp +++ b/plugins/gh-pages.lisp @@ -17,7 +17,7 @@ "The domain CNAME for github to serve pages from.") (defmethod deploy :after (staging) - (let ((blog (truename (rel-path (deploy-dir *config*) ".curr")))) + (let ((blog (rel-path (deploy-dir *config*) ".curr"))) (delete-file (rel-path blog "index.html")) (cl-fad:copy-file (rel-path blog "1.html") (rel-path blog "index.html")) (with-open-file (out (rel-path blog "CNAME")