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

fix bug with subprocess

This commit is contained in:
Jesse Duffield 2022-01-16 14:31:28 +11:00 committed by github-actions[bot]
parent befa35645e
commit 0092c9d08d

View File

@ -645,7 +645,11 @@ func (gui *Gui) runSubprocessWithSuspense(subprocess oscommands.ICmdObj) (bool,
gui.PauseBackgroundThreads = false
return cmdErr == nil, gui.surfaceError(cmdErr)
if cmdErr != nil {
return false, gui.surfaceError(cmdErr)
}
return true, nil
}
func (gui *Gui) runSubprocess(cmdObj oscommands.ICmdObj) error { //nolint:unparam