1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-11-23 16:22:24 +03:00

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 {