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.