From 95473c83b9884d96e510c7415ed794222f77c1b7 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Tue, 15 Mar 2022 13:23:40 +0530 Subject: tissue: Use the term "export" instead of "publish". * tissue/web.scm (build-website): In comments, use the term "export" instead of "publish". --- tissue/web.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tissue/web.scm b/tissue/web.scm index 2f8036c..7e06b40 100644 --- a/tissue/web.scm +++ b/tissue/web.scm @@ -187,7 +187,7 @@ places. TAGS-PATH is the path relative to the document root where the per-tag issue listings are put. It must begin with a /. If it is #f, per-tag issue listings are not generated." (mkdir-p output-directory) - ;; Publish files. + ;; Export files. (call-with-input-pipe (lambda (port) (port-transduce @@ -224,12 +224,12 @@ per-tag issue listings are not generated." rcons get-line port)) "git" "ls-files") (parameterize ((%tags-path tags-path)) - ;; Publish index. + ;; Export index. (let ((output-file (string-append output-directory "/index.html"))) (display (format "~a~%" output-file)) (build-issue-listing (reverse (issues)) output-file #:title title)) - ;; Publish per-tag listings. + ;; Export per-tag listings. (when tags-path (for-each (lambda (tag) (let ((output-file (string-append output-directory -- cgit v1.2.3