From c6a6495f7b862ae603955591f21c4a1ca6ad248b Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Fri, 17 Apr 2026 17:17:32 -0400 Subject: [PATCH] fix(setup): Remove literal \n that caused bash crash --- literate/setup.org | 3 ++- opencortex.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/literate/setup.org b/literate/setup.org index dca9391..ad227bd 100644 --- a/literate/setup.org +++ b/literate/setup.org @@ -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 & diff --git a/opencortex.sh b/opencortex.sh index b28314b..e8c92d1 100755 --- a/opencortex.sh +++ b/opencortex.sh @@ -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 &