Change compile to compile-site and add clean param.

master
thintz 11 years ago
parent b766f4ae07
commit 69a6f9c3ff

@ -12,7 +12,7 @@
; core functions
add-page! delete-page! add-css! delete-css!
add-file-resource! delete-file-resource!
compile
compile-site
)
(import chicken scheme files srfi-1 extras ports irregex)
@ -110,8 +110,8 @@
(file-copy (++ (res-dir) "/" p) path-out)))
*file-resources*))
(define (compile)
(and (directory? (out-dir)) (delete-directory (out-dir) #t))
(define (compile-site #!key (clean #t))
(when clean (and (directory? (out-dir)) (delete-directory (out-dir) #t)))
(output-pages)
(output-stylesheets)
(copy-file-resources))

Loading…
Cancel
Save