From d73f372e4bf91801818db782fd0f25e7a4a1d160 Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Tue, 28 Apr 2026 17:43:22 -0400 Subject: [PATCH] fix(setup): copy harness org files to deployment dir for correct tangling --- opencortex.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opencortex.sh b/opencortex.sh index d9889b8..c80f37a 100755 --- a/opencortex.sh +++ b/opencortex.sh @@ -58,6 +58,7 @@ setup_system() { # Tangle the literate source from SCRIPT_DIR to OC_DATA_DIR (The Engine) echo -e "${YELLOW}--- Deploying Engine to $OC_DATA_DIR ---${NC}" cp "$SCRIPT_DIR/opencortex.asd" "$OC_DATA_DIR/" + cp "$SCRIPT_DIR/harness"/*.org "$OC_DATA_DIR/harness/" cp "$SCRIPT_DIR/skills"/*.org "$OC_DATA_DIR/skills/" cd "$SCRIPT_DIR" @@ -73,7 +74,6 @@ setup_system() { emacs -Q --batch --eval "(require 'org)" --eval "(org-babel-tangle-file \"$f\")" >/dev/null 2>&1 || true fi done - # Create the bin shim echo -e "${YELLOW}--- Creating Bin Shim in $OC_BIN_DIR/opencortex ---${NC}" ln -sf "$SCRIPT_DIR/opencortex.sh" "$OC_BIN_DIR/opencortex"