From 53591e89091761ebbef025abd6fcaf7f07a7365a Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Fri, 17 Apr 2026 18:53:08 -0400 Subject: [PATCH] fix(setup): Squash multi-line SBCL command into single line to avoid bash syntax errors --- opencortex.sh | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/opencortex.sh b/opencortex.sh index dbd52f2..46ec792 100755 --- a/opencortex.sh +++ b/opencortex.sh @@ -183,13 +183,7 @@ if [[ "$1" == "--boot" ]]; then # Force absolute paths for core system directories export SKILLS_DIR="${SCRIPT_DIR}/skills" [ -z "$MEMEX_DIR" ] && export MEMEX_DIR="$HOME/memex" -exec sbcl \ - --eval "(load (merge-pathnames \"quicklisp/setup.lisp\" (user-homedir-pathname)))" \ - --eval "(setf *debugger-hook* (lambda (c h) (declare (ignore h)) (format *error-output* \"FATAL LISP ERROR: ~a~%\" c) (uiop:print-backtrace :stream *error-output*) (uiop:quit 1)))" \ - --eval "(push (truename \"$SCRIPT_DIR/\") asdf:*central-registry*)" \ - --eval "(format t \"--- Quickloading OpenCortex ---~%\")" \ - --eval "(ql:quickload '(:opencortex :croatoan))" \ - --eval "(opencortex:main)" +exec sbcl --eval "(load (merge-pathnames \"quicklisp/setup.lisp\" (user-homedir-pathname)))" --eval "(setf *debugger-hook* (lambda (c h) (declare (ignore h)) (format *error-output* \"FATAL LISP ERROR: ~a~%\" c) (uiop:print-backtrace :stream *error-output*) (uiop:quit 1)))" --eval "(push (truename \"$SCRIPT_DIR/\") asdf:*central-registry*)" --eval "(format t \"--- Quickloading OpenCortex ---~%\")" --eval "(ql:quickload '(:opencortex :croatoan))" --eval "(opencortex:main)" fi # --- 4. INTERACT ---