aboutsummaryrefslogtreecommitdiffstats
path: root/grunt.js
diff options
context:
space:
mode:
Diffstat (limited to 'grunt.js')
-rw-r--r--grunt.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/grunt.js b/grunt.js
index b7d893cb8..f22322379 100644
--- a/grunt.js
+++ b/grunt.js
@@ -449,7 +449,8 @@ task.registerTask('copy_themes', function() {
});
// copy minified base theme from regular release
- var distFolder = 'dist/' + config('files.dist');
+ // TODO same as the one above
+ var distFolder = 'dist/' + template.process(config('files.dist'), config());
files = file.expand(distFolder + '/themes/base/**/*');
files.forEach(function(fileName) {
file.copy(fileName, target + fileName.replace(distFolder, ''));