From f23a64f8e5f5849cf55863fa31bd6fc7e24b6aa2 Mon Sep 17 00:00:00 2001 From: Omni Worker Date: Fri, 21 Nov 2025 05:15:26 -0500 Subject: fix(doc): use live instead of origin/live for base branch --- Omni/Agent/start-worker.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Omni/Agent/start-worker.sh') diff --git a/Omni/Agent/start-worker.sh b/Omni/Agent/start-worker.sh index 37c3760..8de31b9 100755 --- a/Omni/Agent/start-worker.sh +++ b/Omni/Agent/start-worker.sh @@ -121,9 +121,9 @@ while true; do # that may have been generated by sync tools but are tracked in the branch. git checkout -f "$BRANCH_NAME" >/dev/null else - echo "Creating new branch $BRANCH_NAME from origin/live" - git fetch origin live >/dev/null 2>&1 - git checkout -b "$BRANCH_NAME" origin/live >/dev/null + echo "Creating new branch $BRANCH_NAME from live" + # git fetch origin live >/dev/null 2>&1 # Optional if we assume live is up to date or don't care + git checkout -b "$BRANCH_NAME" live >/dev/null fi # F. Execute Agent -- cgit v1.2.3