diff options
Diffstat (limited to 'commands/exec.go')
-rw-r--r-- | commands/exec.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/commands/exec.go b/commands/exec.go index 317bf07a..bce62bd7 100644 --- a/commands/exec.go +++ b/commands/exec.go @@ -7,6 +7,7 @@ import ( "os/exec" "time" + "git.sr.ht/~rjarry/aerc/logging" "git.sr.ht/~rjarry/aerc/widgets" ) @@ -45,6 +46,8 @@ func (ExecCmd) Execute(aerc *widgets.Aerc, args []string) error { cmd.Env = env go func() { + defer logging.PanicHandler() + err := cmd.Run() if err != nil { aerc.PushError(err.Error()) |