Removed the "or pause" behavior for failed scripts.

This commit is contained in:
Bruce Hill 2019-11-09 15:45:07 +01:00
parent 76647e596e
commit 1bebad5edf

2
bb.c
View File

@ -1006,8 +1006,6 @@ int run_script(bb_t *bb, const char *cmd)
LL_PREPEND(running_procs, proc, running);
int status = wait_for_process(&proc);
if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
run_script(bb, "trap true INT; pause; true");
dirty = 1;
return status;
}