fix: Add ASDF registry path to startup logic
Some checks failed
Deploy-Agent-V15-Stdin / JOB-V15-STDIN (push) Failing after 3s

This commit is contained in:
2026-04-16 15:24:29 -04:00
parent 7923195a16
commit 23028a3082
2 changed files with 15 additions and 3 deletions

View File

@@ -59,7 +59,7 @@ if [ -f "opencortex.asd" ] || [ -d "literate" ]; then
echo -e "${BLUE}Starting OpenCortex via SBCL...${NC}"
sbcl --non-interactive \
--eval "(load \"~/quicklisp/setup.lisp\")" \
--eval "(ql:quickload :opencortex)" \
--eval "(push "$(pwd)/" asdf:*central-registry*) (ql:quickload :opencortex)" \
--eval "(opencortex:main)"
fi
#+end_src