Skip to content

Commit

Permalink
Fix Gulp deploy:commit task not running due to variable typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gakimball committed Dec 2, 2015
1 parent 69eb03c commit 86b55dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulp/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ gulp.task('deploy:settings', function(cb) {

// Writes a commit with the changes to the version numbers
gulp.task('deploy:commit', function(cb) {
git.commitSync('Bump to version ' + NEW_VERSION, { a: true });
git.tagSync('v' + NEW_VERSION);
git.commitSync('Bump to version ' + NEXT_VERSION, { a: true });
git.tagSync('v' + NEXT_VERSION);
// git.push('origin', 'develop', cb);
cb();
});
Expand Down

0 comments on commit 86b55dc

Please sign in to comment.