From ac79d27e1622a0952cf7c0798aa62a8f22615e61 Mon Sep 17 00:00:00 2001 From: Jan Krebs Date: Fri, 24 Jan 2020 14:37:01 +0100 Subject: [PATCH] fix missing rename from refactoring --- src/cryogen_core/new_io.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cryogen_core/new_io.clj b/src/cryogen_core/new_io.clj index e6309dc..a3f8be0 100644 --- a/src/cryogen_core/new_io.clj +++ b/src/cryogen_core/new_io.clj @@ -50,5 +50,5 @@ (let [resources (get-distinct-markup-dirs fs-prefix posts pages ignore-patterns)] (doseq [resource resources] - (io/make-parents (io/file (str target-path "/" (:short-path resource)))) - (.mkdir (io/file (str target-path "/" (:short-path resource))))))) + (io/make-parents (io/file (str target-path "/" (:virtual-path resource)))) + (.mkdir (io/file (str target-path "/" (:virtual-path resource)))))))