Skip to content

Commit

Permalink
get rid of needless git error message on status
Browse files Browse the repository at this point in the history
  • Loading branch information
kahole committed Feb 10, 2025
1 parent 63fda6e commit da8e11e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/bisectCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function matchWithFallback(log: string, primaryPattern: RegExp, fallbackPattern:

export async function bisectingStatus(repository: Repository): Promise<MagitBisectState> {
try {
const output = await gitRun(repository, ['bisect', 'log'], undefined, LogLevel.None);
const output = await gitRun(repository, ['bisect', 'log'], undefined, LogLevel.None, false);
const bisectLog = output.stdout.split('\n').reverse().join('\n');

const goodPattern = /good: \[([a-f0-9]{40})\]/;
Expand Down

0 comments on commit da8e11e

Please sign in to comment.