diff options
-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))))) |