Skip to content

Commit 326eb62

Browse files
committed
Ignores errors from check-mailmap since it isn't required
1 parent 8943c25 commit 326eb62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/git/git.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ export class Git {
454454
}
455455

456456
static check_mailmap(repoPath: string, author: string) {
457-
return git<string>({ cwd: repoPath, local: true }, 'check-mailmap', author);
457+
return git<string>({ cwd: repoPath, errors: GitErrorHandling.Ignore, local: true }, 'check-mailmap', author);
458458
}
459459

460460
static checkout(repoPath: string, ref: string, fileName?: string) {

0 commit comments

Comments
 (0)