1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-11-25 04:43:08 +03:00

Made it possible to build again for windows

This commit is contained in:
mjarkk
2018-10-27 14:35:07 +02:00
parent ac03665df3
commit e47c597b3a
3 changed files with 67 additions and 44 deletions

View File

@@ -0,0 +1,8 @@
// +build windows
package commands
// RunCommandWithOutputLiveWrapper runs a command live but because of windows compatibility this command can't be ran there
func RunCommandWithOutputLiveWrapper(c *OSCommand, command string, output func(string) string) error {
return c.RunCommand(command)
}