aboutsummaryrefslogtreecommitdiff
path: root/commands/exec.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/exec.go')
-rw-r--r--commands/exec.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/exec.go b/commands/exec.go
index 72a563d..a46b93a 100644
--- a/commands/exec.go
+++ b/commands/exec.go
@@ -37,7 +37,8 @@ func (_ ExecCmd) Execute(aerc *widgets.Aerc, args []string) error {
Color(tcell.ColorDefault, tcell.ColorRed)
} else {
aerc.PushStatus(fmt.Sprintf(
- "%s: complete", args[0]), 10*time.Second).
+ "%s: completed with status %d", args[0],
+ cmd.ProcessState.ExitCode()), 10*time.Second).
Color(tcell.ColorDefault, tcell.ColorDefault)
}
}()