summaryrefslogtreecommitdiff
path: root/Src/exec.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/exec.c')
-rw-r--r--Src/exec.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/Src/exec.c b/Src/exec.c
index 1685c799e..5cc92b548 100644
--- a/Src/exec.c
+++ b/Src/exec.c
@@ -1091,7 +1091,8 @@ execlist(Estate state, int dont_change_job, int exiting)
exiting = donetrap;
ret = lastval;
dotrap(SIGDEBUG);
- lastval = ret;
+ if (!retflag)
+ lastval = ret;
donetrap = exiting;
noerrexit = oldnoerrexit;
/*
@@ -1230,7 +1231,8 @@ sublist_done:
exiting = donetrap;
ret = lastval;
dotrap(SIGDEBUG);
- lastval = ret;
+ if (!retflag)
+ lastval = ret;
donetrap = exiting;
noerrexit = oldnoerrexit;
opts[ERREXIT] = oerrexit_opt;