Skip to content

Commit 77290c6

Browse files
authored
Git - Fix error handling regression (microsoft#168421)
Git - Fix error handling regression (microsoft#168284) Fix error handling regression
1 parent 6a49a26 commit 77290c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/git/src/repository.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1658,7 +1658,7 @@ export class Repository implements Disposable {
16581658
}
16591659

16601660
if (await this.checkIfMaybeRebased(this.HEAD?.name)) {
1661-
this._pullAndHandleTagConflict(rebase, remote, branch, { unshallow, tags });
1661+
await this._pullAndHandleTagConflict(rebase, remote, branch, { unshallow, tags });
16621662
}
16631663
});
16641664
});
@@ -1740,7 +1740,7 @@ export class Repository implements Disposable {
17401740
}
17411741

17421742
if (await this.checkIfMaybeRebased(this.HEAD?.name)) {
1743-
this._pullAndHandleTagConflict(rebase, remoteName, pullBranch, { tags, cancellationToken });
1743+
await this._pullAndHandleTagConflict(rebase, remoteName, pullBranch, { tags, cancellationToken });
17441744
}
17451745
};
17461746

0 commit comments

Comments
 (0)