Merge branch 'master' of github.com:DomainDrivenArchitecture/cryogen-core
This commit is contained in:
commit
10708c1785
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
(defproject dda/cryogen-core "0.2.0-SNAPSHOT"
|
(defproject dda/cryogen-core "0.2.1-SNAPSHOT"
|
||||||
:description "Cryogen's compiler"
|
:description "Cryogen's compiler"
|
||||||
:url "https://github.com/cryogen-project/cryogen-core"
|
:url "https://github.com/cryogen-project/cryogen-core"
|
||||||
:license {:name "Eclipse Public License"
|
:license {:name "Eclipse Public License"
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
(defn copy-resources-from-theme!
|
(defn copy-resources-from-theme!
|
||||||
[fs-prefix theme target-path ignore-patterns]
|
[fs-prefix theme target-path ignore-patterns]
|
||||||
(let [theme-path (str "templates/themes/" theme)]
|
(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)
|
target-path ignore-patterns)
|
||||||
(cp-io/copy-resources! fs-prefix (str theme-path "/html") ["404.html"]
|
(cp-io/copy-resources! fs-prefix (str theme-path "/html") ["404.html"]
|
||||||
target-path ignore-patterns)))
|
target-path ignore-patterns)))
|
||||||
|
|
Loading…
Reference in a new issue