From: Jörn Zaefferer Date: Sun, 11 Mar 2012 11:55:07 +0000 (+0100) Subject: Build/grunt: Fix themes task X-Git-Tag: 1.9.0m8~189 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ee64f899e0eb47e4045d6049b78c7c089103476c;p=jquery-ui.git Build/grunt: Fix themes task --- 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, ''));