Fix reference error when tagging a release

This commit is contained in:
Nick Downie 2014-07-27 23:02:30 +01:00
parent 92e73bd28a
commit 55a115179e

View 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(){