summaryrefslogtreecommitdiff
path: root/Src/exec.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/exec.c')
-rw-r--r--Src/exec.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/Src/exec.c b/Src/exec.c
index 16ff92392..625c376b7 100644
--- a/Src/exec.c
+++ b/Src/exec.c
@@ -2288,9 +2288,6 @@ execcmd(Estate state, int input, int output, int how, int last1)
#ifdef PATH_DEV_FD
closem(2);
#endif
- if (isset(PRINTEXITVALUE) && isset(SHINSTDIN) && lastval && !subsh) {
- fprintf(stderr, "zsh: exit %ld\n", (long)lastval);
- }
fflush(stdout);
if (save[1] == -2) {
if (ferror(stdout)) {
@@ -2300,6 +2297,10 @@ execcmd(Estate state, int input, int output, int how, int last1)
} else
clearerr(stdout);
}
+ if (isset(PRINTEXITVALUE) && isset(SHINSTDIN) &&
+ lastval && !subsh) {
+ fprintf(stderr, "zsh: exit %ld\n", (long)lastval);
+ }
if (do_exec) {
if (subsh)