diff options
author | Arun Isaac | 2022-03-15 13:23:40 +0530 |
---|---|---|
committer | Arun Isaac | 2022-03-15 13:23:40 +0530 |
commit | 95473c83b9884d96e510c7415ed794222f77c1b7 (patch) | |
tree | 4054e13a380acb2c20cee407b92c199802a2ff2a | |
parent | f8e32fd17a1fc3730dd3b6601133e65cd7f9df9d (diff) | |
download | tissue-95473c83b9884d96e510c7415ed794222f77c1b7.tar.gz tissue-95473c83b9884d96e510c7415ed794222f77c1b7.tar.lz tissue-95473c83b9884d96e510c7415ed794222f77c1b7.zip |
tissue: Use the term "export" instead of "publish".
* tissue/web.scm (build-website): In comments, use the term "export"
instead of "publish".
-rw-r--r-- | tissue/web.scm | 6 |
1 files 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 |