From 3a6e3a9ba01f58d3106573c5b3cb8e6167bde0bf Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Wed, 24 Dec 2014 11:15:20 -0300 Subject: [PATCH] fix remote reference in gulpfile.js --- gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 9e9e2a8..0b0da50 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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); });