From 22b979aaa4bf5acaf54f3508d0d5474598149395 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sun, 4 Feb 2024 19:37:54 +0000 Subject: [PATCH] frontend.lisp: Return non-nil from `main'. Otherwise some versions of `cl-launch' force a nonzero exit status. --- frontend.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend.lisp b/frontend.lisp index 613fb21..e170731 100644 --- a/frontend.lisp +++ b/frontend.lisp @@ -121,6 +121,7 @@ (die-usage))) (if opt-debug (run) - (with-unix-error-reporting () (run)))))) + (with-unix-error-reporting () (run))) + t))) ;;;----- That's all, folks -------------------------------------------------- -- 2.11.0