1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-14 11:23:09 +02:00
lazygit/pkg/commands/exec_live_win.go

10 lines
387 B
Go
Raw Normal View History

// +build windows
package commands
// RunCommandWithOutputLiveWrapper runs a command live but because of windows compatibility this command can't be ran there
2019-01-16 07:56:47 +02:00
// TODO: Remove this hack and replace it with a proper way to run commands live on windows
2018-12-12 23:10:33 +02:00
func RunCommandWithOutputLiveWrapper(c *OSCommand, command string, output func(string) string) error {
return c.RunCommand(command)
}