diff --git a/pollen/private/ts.rktd b/pollen/private/ts.rktd index 7048990..2c07180 100644 --- a/pollen/private/ts.rktd +++ b/pollen/private/ts.rktd @@ -1 +1 @@ -1573246118 +1573261682 diff --git a/pollen/render.rkt b/pollen/render.rkt index 07d155c..4d343b5 100644 --- a/pollen/render.rkt +++ b/pollen/render.rkt @@ -158,10 +158,9 @@ [(? pagetree-source? pt) (loop (append (pagetree->paths pt) (cdr paths)) acc)] [(app ->source-path (and (not #false) (? file-exists?) sp)) (loop (cdr paths) (cons sp acc))] [_ (loop (cdr paths) acc)]))) - (cond - [wants-dry-run? (if (null? expanded-source-paths) - (message "[no paths to render]") - (for-each message expanded-source-paths))] + (cond + [(null? expanded-source-paths) (message "[no paths to render]")] + [wants-dry-run? (for-each message expanded-source-paths)] [else (for-each render-to-file-if-needed (match wants-parallel-render? ;; returns crashed jobs for serial rendering