do not check the results of a run_program if script asserts are disabled
diff --git a/commands.c b/commands.c
index e6fb9be..a60366f 100644
--- a/commands.c
+++ b/commands.c
@@ -397,7 +397,7 @@
 
     int status;
     waitpid(pid, &status, 0);
-    if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
+    if (WIFEXITED(status) && WEXITSTATUS(status) == 0 || !script_assert_enabled) {
         return 0;
     } else {
         LOGE("Error in %s\n(Status %d)\n", path, status);