1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-04 22:34:39 +02:00

handled golangcibot

This commit is contained in:
mjarkk 2018-10-17 21:14:24 +02:00
parent 01fa106de3
commit 4451cbc50b

View File

@ -92,7 +92,8 @@ func (c *OSCommand) RunCommandWithOutputLive(command string, output func(string)
for scanner.Scan() {
toWrite := output(re.ReplaceAllString(scanner.Text(), ""))
if len(toWrite) > 0 {
tty.Write([]byte(toWrite + "\n"))
_, err := tty.Write([]byte(toWrite + "\n"))
logrus.Error(err.Error())
}
}
}()