From eea8ef9fec654e257c423b2c4142c3f4f7c69da7 Mon Sep 17 00:00:00 2001 From: Codex Date: Fri, 3 Jul 2026 09:23:26 +0000 Subject: [PATCH] fix: avoid blocking branch follower loop --- scripts/src/cicd.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/src/cicd.ts b/scripts/src/cicd.ts index bb01e232..25784977 100644 --- a/scripts/src/cicd.ts +++ b/scripts/src/cicd.ts @@ -2899,7 +2899,7 @@ function controllerLoopScript(): string { " git clone --branch \"${UNIDESK_CONTROLLER_SOURCE_BRANCH}\" \"/cache/${UNIDESK_CONTROLLER_SOURCE_REPOSITORY}.git\" /work/unidesk", " cp /etc/unidesk-cicd-branch-follower/cicd-branch-followers.yaml /work/unidesk/config/cicd-branch-followers.yaml", " cd /work/unidesk", - " bun scripts/cli.ts cicd branch-follower run-once --all --confirm --wait --controller --config config/cicd-branch-followers.yaml --timeout-seconds \"${timeout}\" || true", + " bun scripts/cli.ts cicd branch-follower run-once --all --confirm --controller --config config/cicd-branch-followers.yaml --timeout-seconds \"${timeout}\" || true", " echo \"branch-follower loop finished $(date -Iseconds)\"", " cd /work", " sleep \"${interval}\"",