From 40beb513e9ba5045c4de9d47cf4ac8406ea55575 Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Sun, 19 Apr 2026 19:04:17 -0400 Subject: [PATCH] fix(boot): Remove destructive cache purge from TUI launch to prevent race condition --- opencortex.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/opencortex.sh b/opencortex.sh index 5d45cb7..c6c2fff 100755 --- a/opencortex.sh +++ b/opencortex.sh @@ -185,7 +185,6 @@ case "$COMMAND" in echo "" fi echo -e "Launching Croatoan TUI..." - rm -rf "/home/user/.cache/common-lisp" 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 '(push (truename (uiop:getenv "SCRIPT_DIR")) asdf:*central-registry*)' --eval '(ql:quickload :opencortex/tui)' --eval '(opencortex.tui:main)'