From 1bebad5edf1007b46a8769bdea68cac2c2a9a3e5 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 9 Nov 2019 15:45:07 +0100 Subject: Removed the "or pause" behavior for failed scripts. --- bb.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'bb.c') diff --git a/bb.c b/bb.c index 6672fd6..271bf7d 100644 --- a/bb.c +++ b/bb.c @@ -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; } -- cgit v1.2.3