Skip to content

Commit

Permalink
Do not exclude the first commit from bisecting
Browse files Browse the repository at this point in the history
  • Loading branch information
annaMarchenkoJetBrains committed Nov 14, 2024
1 parent 1065501 commit 4f3e03e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ async function startBisect() {
//todo add validation on all values
const weburl = await bisectClient.sendBisectRequest({
targetValue: targetValue.value as string,
changes: (firstCommit.value as string) + "^.." + (lastCommit.value as string),
changes: (firstCommit.value as string) + ".." + (lastCommit.value as string),
direction: direction.value,
test: test.value,
metric: metric.value,
Expand Down

0 comments on commit 4f3e03e

Please sign in to comment.