Skip to content

Commit

Permalink
Fix superfluous cb
Browse files Browse the repository at this point in the history
  • Loading branch information
saintedlama committed Jul 22, 2017
1 parent 8bda0d5 commit b1a5321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class Repository {

const additionalOptions = opted(this.options.pull).join(' ');

await this._gitCommand(`${this.options.executable} pull ${additionalOptions} `, { cwd: this.path }, cb);
await this._gitCommand(`${this.options.executable} pull ${additionalOptions} `, { cwd: this.path });
}

async _gitCommand(gitCommand, options) {
Expand Down

0 comments on commit b1a5321

Please sign in to comment.