1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-31 14:24:25 +03:00

Fixed circleci build

This commit is contained in:
mjarkk
2018-10-27 14:56:15 +02:00
parent 959d6fa2ca
commit 87d1b9a547
51 changed files with 2158 additions and 0 deletions

View File

@ -3,6 +3,7 @@
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)
}