Add debug flag of work dir deletion

This commit is contained in:
Nikolay Puzanov 2022-11-30 15:05:02 +03:00
parent 00d846d18c
commit ec22d48d67

View File

@ -23,6 +23,7 @@
(define INDEX-FILE "index.html")
(define LOGGING #t)
(define DELETE-WORK-DIR #t)
(define (multistring . strings)
(apply string-append
@ -255,7 +256,8 @@
(format "--\n~a\n" out)))))
(string-append compile-log execution-log))))))))))
;; (delete-recursive work-dir)
(when DELETE-WORK-DIR
(delete-recursive work-dir))
log)))))
;;;