diff --git a/src/cryogen_core/new_io.clj b/src/cryogen_core/new_io.clj index a3f8be0..c303842 100644 --- a/src/cryogen_core/new_io.clj +++ b/src/cryogen_core/new_io.clj @@ -15,12 +15,6 @@ (def public "resources/public") -(defn copy-resources-from-templates! - [fs-prefix resources target-path ignore-patterns] - (let [resource-path "templates"] - (cp-io/copy-resources! fs-prefix resource-path resources - target-path ignore-patterns))) - (defn copy-resources-from-theme! [fs-prefix theme target-path ignore-patterns] (let [theme-path (str "templates/themes/" theme)] @@ -35,6 +29,12 @@ (cp-io/copy-resources! fs-prefix theme-path ["html"] target-path ignore-patterns))) +(defn copy-resources-from-templates! + [fs-prefix resources target-path ignore-patterns] + (let [resource-path "templates"] + (cp-io/copy-resources! fs-prefix resource-path resources + target-path ignore-patterns))) + (defn get-distinct-markup-dirs [fs-prefix posts pages ignore-patterns] (let [base-path "templates/md"