summaryrefslogtreecommitdiffstats
path: root/pkg/commands
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-01-26 16:46:54 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-01-26 16:52:20 +1100
commit5e6e1617aa9a97b6f13bfeddc43f27844a6468cd (patch)
treea94c134f8c6d2a1d292409b0edc4d636780cf2ae /pkg/commands
parent5e9cfab2835c19994ba35413fc57bdcd9e11bfcc (diff)
add another bisect integration test
Diffstat (limited to 'pkg/commands')
-rw-r--r--pkg/commands/git_commands/bisect.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/commands/git_commands/bisect.go b/pkg/commands/git_commands/bisect.go
index c72eaee52..b032afc45 100644
--- a/pkg/commands/git_commands/bisect.go
+++ b/pkg/commands/git_commands/bisect.go
@@ -166,7 +166,7 @@ func (self *BisectCommands) IsDone() (bool, []string, error) {
func (self *BisectCommands) ReachableFromStart(ref string, startRef string) bool {
err := self.cmd.New(
fmt.Sprintf("git merge-base --is-ancestor %s %s", startRef, ref),
- ).Run()
+ ).DontLog().Run()
return err == nil
}