From 55a115179e4717f10f25301a1b86fbc6cfd21de2 Mon Sep 17 00:00:00 2001 From: Nick Downie Date: Sun, 27 Jul 2014 23:02:30 +0100 Subject: [PATCH] Fix reference error when tagging a release --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 8a971dbcaa5..4a435bd2a9a 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(){