fix(setup): Remove literal \n that caused bash crash
Some checks failed
Deploy-Agent-V15-Stdin / JOB-V15-STDIN (push) Failing after 29s

This commit is contained in:
2026-04-17 17:17:32 -04:00
parent 47a2ff2a2d
commit c6a6495f7b
2 changed files with 4 additions and 2 deletions

View File

@@ -110,7 +110,8 @@ setup_system() {
echo -e "${RED}✗ Compilation or Loading failed.${NC}"
exit 1
fi
\n echo -e "${YELLOW}--- Finalizing: Awakening the Brain as a background daemon ---${NC}"
echo -e "${YELLOW}--- Finalizing: Awakening the Brain as a background daemon ---${NC}"
# Nuke any existing brain logs
> "$SCRIPT_DIR/brain.log"
"$SCRIPT_DIR/opencortex.sh" --boot > "$SCRIPT_DIR/brain.log" 2>&1 &

View File

@@ -101,7 +101,8 @@ setup_system() {
echo -e "${RED}✗ Compilation or Loading failed.${NC}"
exit 1
fi
\n echo -e "${YELLOW}--- Finalizing: Awakening the Brain as a background daemon ---${NC}"
echo -e "${YELLOW}--- Finalizing: Awakening the Brain as a background daemon ---${NC}"
# Nuke any existing brain logs
> "$SCRIPT_DIR/brain.log"
"$SCRIPT_DIR/opencortex.sh" --boot > "$SCRIPT_DIR/brain.log" 2>&1 &