From: Nick Downie Date: Sun, 27 Jul 2014 22:02:30 +0000 (+0100) Subject: Fix reference error when tagging a release X-Git-Tag: v1.0.1-beta.3~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55a115179e4717f10f25301a1b86fbc6cfd21de2;p=thirdparty%2FChart.js.git Fix reference error when tagging a release --- diff --git a/gulpfile.js b/gulpfile.js index 8a971dbca..4a435bd2a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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(){