Skip to content
This repository has been archived by the owner on Mar 4, 2021. It is now read-only.

Commit

Permalink
Fix reference error when tagging a release
Browse files Browse the repository at this point in the history
  • Loading branch information
nnnick committed Jul 27, 2014
1 parent 92e73bd commit 55a1151
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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(){
Expand Down

0 comments on commit 55a1151

Please sign in to comment.