aboutsummaryrefslogtreecommitdiffstats
path: root/grunt.js
diff options
context:
space:
mode:
Diffstat (limited to 'grunt.js')
-rw-r--r--grunt.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/grunt.js b/grunt.js
index e18baeece..0f72e4842 100644
--- a/grunt.js
+++ b/grunt.js
@@ -339,7 +339,9 @@ grunt.registerMultiTask( "copy", "Copy files to destination folder and replace @
if ( /png$/.test( fileName ) ) {
grunt.file.copy( fileName, target + targetFile );
} else {
- grunt.file.copy( fileName, target + targetFile, replaceVersion );
+ grunt.file.copy( fileName, target + targetFile, {
+ process: replaceVersion
+ });
}
});
grunt.log.writeln( "Copied " + files.length + " files." );