Skip to content
This repository has been archived by the owner on Nov 21, 2019. It is now read-only.

Commit

Permalink
Release: v3.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
tayvano committed Dec 24, 2016
1 parent 3139b55 commit 022b414
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ gulp.task('add', function () {
})

// commit with current v# in manifest
gulp.task('commit', function () {
gulp.task('commit', ['getVersion'], function () {
return gulp.src('*.js', {read: false})
.pipe(shell([
'git commit -m "Rebuilt and cleaned everything. Done for now."'
Expand All @@ -275,7 +275,7 @@ gulp.task('commit', function () {
})

// commit with current v# in manifest
gulp.task('commitV', function () {
gulp.task('commitV', ['getVersion'], function () {
return gulp.src('*.js', {read: false})
.pipe(shell([
'git commit -m " ' + versionMsg + ' "'
Expand Down Expand Up @@ -339,7 +339,7 @@ gulp.task('bump', function(cb) { runSequence('clean', 'bump-patch',

gulp.task('cleanZip', function(cb) { runSequence('clean', 'zip', cb); });

gulp.task('push', function(cb) { runSequence('add', 'commitV', 'tag', cb); });
gulp.task('commit', function(cb) { runSequence('add', 'commitV', 'tag', cb); });

gulp.task('pushLive', function(cb) { runSequence('add', 'commitV', 'tag', 'push', 'pushLive', cb); });

Expand Down
Binary file modified releases/chrome-extension-v3.3.6.zip
Binary file not shown.
Binary file modified releases/dist-v3.3.6.zip
Binary file not shown.

0 comments on commit 022b414

Please sign in to comment.