Skip to content

Commit 34382d0

Browse files
committed
exit persistent post run when executor has non-zero exitcode
1 parent f714c5d commit 34382d0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pkg/commands/root.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ func (e *Executor) persistentPostRun(_ *cobra.Command, _ []string) error {
8484
trace.Stop()
8585
}
8686

87-
os.Exit(e.exitCode)
87+
if e.exitCode != exitcodes.Success {
88+
os.Exit(e.exitCode)
89+
}
8890

8991
return nil
9092
}

0 commit comments

Comments
 (0)