diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-04-11 17:46:54 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-04-11 17:46:54 -0400 |
commit | 40b824255497aee0e435a7cb8fae55548d9cc700 (patch) | |
tree | 6d2e73c2699462841d5c2e2cdf5534e89f81c7f2 | |
parent | c7d98392ef3b5f016f02ded61c73f2c818d004cf (diff) |
site: Tweak log output when building.
* haunt/site.scm (build-site): Change log message text.
-rw-r--r-- | haunt/site.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/haunt/site.scm b/haunt/site.scm index e686ecf..23bc6d4 100644 --- a/haunt/site.scm +++ b/haunt/site.scm @@ -76,7 +76,6 @@ BUILDERS: A list of procedures for building pages from posts" (build-dir (absolute-file-name (site-build-directory site)))) (clean-directory build-dir) (for-each (lambda (page) - (format #t "writing ~a" (page-file-name page)) - (write-page page build-dir) - (format #t " ✓~%")) + (format #t "writing '~a'~%" (page-file-name page)) + (write-page page build-dir)) (flat-map (cut <> site posts) (site-builders site))))) |