1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-17 12:06:38 +02:00

appease CI

This commit is contained in:
Jesse Duffield 2022-01-15 15:18:16 +11:00
parent dafac52a4c
commit 7a690f9078

View File

@ -268,14 +268,12 @@ func main() {
err = g.MainLoop() err = g.MainLoop()
g.Close() g.Close()
if err != nil {
switch err { switch err {
case gocui.ErrQuit: case gocui.ErrQuit:
return return
default: default:
log.Panicln(err) log.Panicln(err)
} }
}
} }
func (app *App) runSubprocess(cmd *exec.Cmd) { func (app *App) runSubprocess(cmd *exec.Cmd) {