Skip to content

Commit 25348a2

Browse files
that-github-userunknownclaude
authored
Update log messages: 'Creating worktrees' → 'Setting up agent environments' (#158)
We switched from worktrees to clones in #153 but the user-facing messages still said 'worktrees'. Co-authored-by: unknown <that-github-user@github.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 415ab1d commit 25348a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/run.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export async function retry(opts: RunOptions): Promise<void> {
181181
await cleanupBranches().catch(() => {});
182182

183183
// Phase 1: Create worktrees only for failed agents
184-
console.log(" Creating worktrees for failed agents...");
184+
console.log(" Setting up agent environments for failed agents...");
185185
const worktrees: Array<{ id: number; path: string }> = [];
186186

187187
const handleSigint = () => {
@@ -387,7 +387,7 @@ export async function run(opts: RunOptions): Promise<void> {
387387
await cleanupBranches().catch(() => {});
388388

389389
// Phase 1: Create worktrees
390-
console.log(" Creating worktrees...");
390+
console.log(" Setting up agent environments...");
391391
const worktrees: Array<{ id: number; path: string }> = [];
392392

393393
// Graceful Ctrl+C: clean up all worktrees created so far, then exit.

0 commit comments

Comments
 (0)