Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/commands/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export async function retry(opts: RunOptions): Promise<void> {
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 = () => {
Expand Down Expand Up @@ -387,7 +387,7 @@ export async function run(opts: RunOptions): Promise<void> {
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.
Expand Down
Loading