Skip to content

Commit c942448

Browse files
committed
Fix variable name conflict in runGreen function
1 parent 580c8d0 commit c942448

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/claude.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1816,8 +1816,8 @@ Let's work through this together to get CI passing.`
18161816
return false
18171817
}
18181818

1819-
const [, owner, repoName] = repoMatch
1820-
const repo = repoName.replace('.git', '')
1819+
const [, owner, repoNameMatch] = repoMatch
1820+
const repo = repoNameMatch.replace('.git', '')
18211821

18221822
// Monitor workflow with retries
18231823
let retryCount = 0

0 commit comments

Comments
 (0)