frontend.lisp: Return non-nil from `main'.
authorMark Wooding <mdw@distorted.org.uk>
Sun, 4 Feb 2024 19:37:54 +0000 (19:37 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Sun, 4 Feb 2024 19:37:54 +0000 (19:37 +0000)
Otherwise some versions of `cl-launch' force a nonzero exit status.

frontend.lisp

index 613fb21..e170731 100644 (file)
          (die-usage)))
       (if opt-debug
          (run)
-         (with-unix-error-reporting () (run))))))
+         (with-unix-error-reporting () (run)))
+      t)))
 
 ;;;----- That's all, folks --------------------------------------------------