diff --git a/project.clj b/project.clj index 8ccae14..23bdf58 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject dda/cryogen-core "0.2.0-SNAPSHOT" +(defproject dda/cryogen-core "0.2.1-SNAPSHOT" :description "Cryogen's compiler" :url "https://github.com/cryogen-project/cryogen-core" :license {:name "Eclipse Public License" diff --git a/src/cryogen_core/new_io.clj b/src/cryogen_core/new_io.clj index c1f7dd4..74cc31f 100644 --- a/src/cryogen_core/new_io.clj +++ b/src/cryogen_core/new_io.clj @@ -19,7 +19,7 @@ (defn copy-resources-from-theme! [fs-prefix theme target-path ignore-patterns] (let [theme-path (str "templates/themes/" theme)] - (cp-io/copy-resources! fs-prefix theme-path ["css" "js"] + (cp-io/copy-resources! fs-prefix theme-path ["css" "js" "img"] target-path ignore-patterns) (cp-io/copy-resources! fs-prefix (str theme-path "/html") ["404.html"] target-path ignore-patterns)))