github.com/fluffynuts/lazygit@v0.8.1/pkg/commands/exec_live_win.go (about)

     1  // +build windows
     2  
     3  package commands
     4  
     5  // RunCommandWithOutputLiveWrapper runs a command live but because of windows compatibility this command can't be ran there
     6  // TODO: Remove this hack and replace it with a proper way to run commands live on windows
     7  func RunCommandWithOutputLiveWrapper(c *OSCommand, command string, output func(string) string) error {
     8  	return c.RunCommand(command)
     9  }