]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Fix reference error when tagging a release
authorNick Downie <hello@nickdownie.com>
Sun, 27 Jul 2014 22:02:30 +0000 (23:02 +0100)
committerNick Downie <hello@nickdownie.com>
Sun, 27 Jul 2014 22:02:30 +0000 (23:02 +0100)
gulpfile.js

index 8a971dbcaa5bfd7fd9820261e3b901f0c31c1f17..4a435bd2a9a36c9884a70666ae72acd2a476fcc5 100644 (file)
@@ -81,7 +81,7 @@ gulp.task('bump', function(complete){
 });
 
 gulp.task('release', ['build'], function(){
-       exec('git tag -a v' + newVersion);
+       exec('git tag -a v' + package.version);
 });
 
 gulp.task('jshint', function(){