mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
11 lines
418 B
Go
11 lines
418 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package oscommands
|
|
|
|
// 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 proper way to run commands live on windows
|
|
func RunCommandWithOutputLiveWrapper(c *OSCommand, cmdObj ICmdObj, output func(string) string) error {
|
|
return c.RunCommand(cmdObj.ToString())
|
|
}
|