From 0479f59aa43bb706abed42c233cde000c7f86ffc Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Thu, 28 Apr 2022 09:55:28 +0200 Subject: global-functions: catch runtime error when loading modules (cherry picked from commit e74bec7e5b62e54d10b1f3ba058868536b35fdc6) --- global-functions | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/global-functions b/global-functions index 89234f9..f212759 100644 --- a/global-functions +++ b/global-functions @@ -1273,7 +1273,11 @@ :foreach Script in=[ / system script find where name ~ "^mod/." ] do={ :local ScriptVal [ / system script get $Script ]; :if ([ $ValidateSyntax ($ScriptVal->"source") ] = true) do={ - / system script run $Script; + :do { + / system script run $Script; + } on-error={ + $LogPrintExit2 error $0 ("Module '" . $ScriptVal->"name" . "' failed to run.") false; + } } else={ $LogPrintExit2 error $0 ("Module '" . $ScriptVal->"name" . "' failed syntax validation, skipping.") false; } -- cgit v1.2.3-54-g00ecf