diff options
| author | Omni Worker <bot@omni.agent> | 2025-11-21 05:15:26 -0500 |
|---|---|---|
| committer | Omni Worker <bot@omni.agent> | 2025-11-21 05:15:26 -0500 |
| commit | f23a64f8e5f5849cf55863fa31bd6fc7e24b6aa2 (patch) | |
| tree | 0a195963a5047684cf0ecada02e8ba1c379134e9 /Omni/Agent/start-worker.sh | |
| parent | d31c92b78c73a40286c3d01760eb340d32945d7b (diff) | |
fix(doc): use live instead of origin/live for base branch
Diffstat (limited to 'Omni/Agent/start-worker.sh')
| -rwxr-xr-x | Omni/Agent/start-worker.sh | 6 |
1 files changed, 3 insertions, 3 deletions
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 |
