mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-03-29 22:07:13 +02:00
10 lines
388 B
Go
10 lines
388 B
Go
// +build windows
|
|
|
|
package commands
|
|
|
|
// RunCommandWithOutputLiveWrapper runs a command live but because of windows compatibility this command can't be ran there
|
|
// TODO: Remove this hack and replace it with a propper way to run commands live on windows
|
|
func RunCommandWithOutputLiveWrapper(c *OSCommand, command string, output func(string) string) error {
|
|
return c.RunCommand(command)
|
|
}
|