aboutsummaryrefslogtreecommitdiffstats
path: root/grunt.js
diff options
context:
space:
mode:
Diffstat (limited to 'grunt.js')
-rw-r--r--grunt.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/grunt.js b/grunt.js
index b60ac9e67..a2929ff28 100644
--- a/grunt.js
+++ b/grunt.js
@@ -254,7 +254,7 @@ config('files', files);
task.registerBasicTask('copy', 'Copy files to destination folder and replace @VERSION with pkg.version', function(data) {
function replaceVersion(source) {
- return source.replace("@VERSION", config("pkg").version);
+ return source.replace("@VERSION", config("pkg.version"));
}
var files = file.expand(data.src);
var target = data.dest + '/';