From a2a03e58c763afcf868e87e0fd99e645378c2f68 Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 29 Mar 2026 13:59:19 -0700 Subject: [PATCH] =?UTF-8?q?Update=20log=20messages:=20'Creating=20worktree?= =?UTF-8?q?s'=20=E2=86=92=20'Setting=20up=20agent=20environments'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We switched from worktrees to clones in #153 but the user-facing messages still said 'worktrees'. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/commands/run.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/run.ts b/src/commands/run.ts index 41a32d8..4257d18 100644 --- a/src/commands/run.ts +++ b/src/commands/run.ts @@ -181,7 +181,7 @@ export async function retry(opts: RunOptions): Promise { await cleanupBranches().catch(() => {}); // Phase 1: Create worktrees only for failed agents - console.log(" Creating worktrees for failed agents..."); + console.log(" Setting up agent environments for failed agents..."); const worktrees: Array<{ id: number; path: string }> = []; const handleSigint = () => { @@ -387,7 +387,7 @@ export async function run(opts: RunOptions): Promise { await cleanupBranches().catch(() => {}); // Phase 1: Create worktrees - console.log(" Creating worktrees..."); + console.log(" Setting up agent environments..."); const worktrees: Array<{ id: number; path: string }> = []; // Graceful Ctrl+C: clean up all worktrees created so far, then exit.