From 7bd58d70899da74c83f60cfa5038bfbe0ff08fbe Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Sun, 19 Apr 2026 19:13:58 -0400 Subject: [PATCH] fix(boot): Use --eval '(load ...)' instead of --load '(form)' for pre-compilation --- opencortex.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opencortex.sh b/opencortex.sh index e3c09db..aa08a4d 100755 --- a/opencortex.sh +++ b/opencortex.sh @@ -172,7 +172,7 @@ case "$COMMAND" in [ -z "$MEMEX_DIR" ] && export MEMEX_DIR="$HOME/memex" # 1. Warm the cache in the foreground (Blocking) echo -e "--- Pre-compiling Neural Dependencies ---" - sbcl --non-interactive --load '(merge-pathnames "quicklisp/setup.lisp" (user-homedir-pathname))' \ + sbcl --non-interactive --eval '(load (merge-pathnames "quicklisp/setup.lisp" (user-homedir-pathname)))' \ --eval "(push (truename \"\") asdf:*central-registry*)" \ --eval "(ql:quickload '(:opencortex :opencortex/tui :croatoan))" @@ -196,7 +196,7 @@ case "$COMMAND" in [ -z "$MEMEX_DIR" ] && export MEMEX_DIR="$HOME/memex" # 1. Warm the cache in the foreground (Blocking) echo -e "--- Pre-compiling Neural Dependencies ---" - sbcl --non-interactive --load '(merge-pathnames "quicklisp/setup.lisp" (user-homedir-pathname))' \ + sbcl --non-interactive --eval '(load (merge-pathnames "quicklisp/setup.lisp" (user-homedir-pathname)))' \ --eval "(push (truename \"\") asdf:*central-registry*)" \ --eval "(ql:quickload '(:opencortex :opencortex/tui :croatoan))"