fix: Properly export all .env variables before boot

This commit is contained in:
2026-04-16 15:31:11 -04:00
parent 9c37fda9b5
commit 08b5ecbd91

View File

@@ -57,6 +57,7 @@ fi
if [ -f "opencortex.asd" ] || [ -d "literate" ]; then
if [ ! -f .env ]; then ./scripts/onboard-baremetal.sh; fi
export SKILLS_DIR="$(grep "^SKILLS_DIR=" .env | cut -d"\"" -f2)"
if [ -f .env ]; then set -a; source .env; set +a; fi
echo -e "${BLUE}Starting OpenCortex via SBCL...${NC}"
sbcl --non-interactive \
--eval "(load \"~/quicklisp/setup.lisp\")" \