Don't log the GetDiff command

This is used for internal purposes and shouldn't pollute the command log.
This commit is contained in:
Stefan Haller 2025-11-15 18:15:17 +01:00
parent 933573fd94
commit 9272276247

View file

@ -55,7 +55,7 @@ func (self *DiffCommands) GetDiff(staged bool, additionalArgs ...string) (string
Dir(self.repoPaths.worktreePath).
Arg(additionalArgs...).
ToArgv(),
).RunWithOutput()
).DontLog().RunWithOutput()
}
type DiffToolCmdOptions struct {