diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-07-08 18:32:31 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-07-08 18:32:31 -0400 |
commit | 133085b436f56bdd48fb1aba1184811b3a278d3c (patch) | |
tree | 5f010744ca4bd9e0cf97c6cdad93bf5e7feb8020 /commands/exec.go | |
parent | 6797f9347603aff0831bf56566fbf164cbdda179 (diff) | |
download | aerc-133085b436f56bdd48fb1aba1184811b3a278d3c.tar.gz |
Fix re-opening of expired pipe tabs
Diffstat (limited to 'commands/exec.go')
-rw-r--r-- | commands/exec.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/commands/exec.go b/commands/exec.go index a46b93a..27edf5d 100644 --- a/commands/exec.go +++ b/commands/exec.go @@ -36,10 +36,14 @@ func (_ ExecCmd) Execute(aerc *widgets.Aerc, args []string) error { aerc.PushStatus(" "+err.Error(), 10*time.Second). Color(tcell.ColorDefault, tcell.ColorRed) } else { + color := tcell.ColorDefault + if cmd.ProcessState.ExitCode() != 0 { + color = tcell.ColorRed + } aerc.PushStatus(fmt.Sprintf( "%s: completed with status %d", args[0], cmd.ProcessState.ExitCode()), 10*time.Second). - Color(tcell.ColorDefault, tcell.ColorDefault) + Color(tcell.ColorDefault, color) } }() return nil |