Commit ea217b6564c49a1194f06339e0e368fd92c53310
1 parent
e4637b83
Exists in
master
and in
29 other branches
Fix bug in build task
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
gulp/conf.js
... | ... | @@ -23,7 +23,7 @@ exports.paths = { |
23 | 23 | }; |
24 | 24 | exports.configTheme = function(theme) { |
25 | 25 | exports.paths.theme = theme || "angular-default"; |
26 | - exports.paths.allSources = [exports.paths.src, exports.paths.theme]; | |
26 | + exports.paths.allSources = [exports.paths.src, path.join(exports.paths.themes, exports.paths.theme)]; | |
27 | 27 | exports.paths.dist = path.join("dist", exports.paths.theme); |
28 | 28 | } |
29 | 29 | exports.configTheme(argv.theme); | ... | ... |