Skip to content

Commit

Permalink
fix: Git pushSync
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Aug 29, 2018
1 parent 1b663ab commit cd6fedc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/exec/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require('any-observable/register/rxjs-all'); // eslint-disable-line import/no-unassigned-import
require('rxjs/add/operator/merge');
const Observable = require('any-observable');
const streamToObservable = require('stream-to-observable');
const execa = require('execa');
Expand Down
2 changes: 1 addition & 1 deletion src/git/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ module.exports = {
* @param args
*/
pushSync(...args) {
return gitAsync('push', ...args);
return gitSync('push', ...args);
},
/**
*
Expand Down

0 comments on commit cd6fedc

Please sign in to comment.