1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-12-01 22:52:01 +02:00

update tests

This commit is contained in:
Jesse Duffield
2018-09-01 12:13:41 +10:00
parent ae0d88f855
commit 3f14b764d5
2 changed files with 44 additions and 39 deletions

View File

@@ -80,8 +80,7 @@ func (c *OSCommand) RunDirectCommand(command string) (string, error) {
c.Log.WithField("command", command).Info("RunDirectCommand")
return sanitisedCommandOutput(
exec.
Command(c.Platform.shell, c.Platform.shellArg, command).
c.command(c.Platform.shell, c.Platform.shellArg, command).
CombinedOutput(),
)
}