Merge pull request #853 from maraoz/fix/gulpfile

fix remote reference in gulpfile.js
This commit is contained in:
Esteban Ordano 2014-12-24 11:16:35 -03:00
commit 88de3a9445
1 changed files with 3 additions and 3 deletions

View File

@ -258,13 +258,13 @@ gulp.task('release:version-commit', function() {
});
gulp.task('release:push-releases', function(cb) {
git.push('origin', 'releases', {
git.push('bitpay', 'releases', {
args: ''
}, cb);
});
gulp.task('release:push', function(cb) {
git.push('origin', 'master', {
git.push('bitpay', 'master', {
args: ''
}, cb);
});
@ -273,7 +273,7 @@ gulp.task('release:push-tag', function(cb) {
var pjson = require('./package.json');
var name = 'v' + pjson.version;
git.tag(name, 'Release ' + name, function() {
git.push('origin', name, {
git.push('bitpay', name, {
args: '--tags'
}, cb);
});