Skip to content

Commit 5f50de4

Browse files
Mossakaclaude
andcommitted
fix: add missing closing braces in awf-runner.ts merge resolution
The merge conflict resolution dropped closing braces for the noRateLimit if-blocks in both run() and runWithSudo() methods, causing TypeScript compilation errors in CI. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d60b392 commit 5f50de4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/fixtures/awf-runner.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ export class AwfRunner {
129129
}
130130
if (options.noRateLimit) {
131131
args.push('--no-rate-limit');
132+
}
132133

133134
// Add --env-all flag
134135
if (options.envAll) {
@@ -308,6 +309,7 @@ export class AwfRunner {
308309
}
309310
if (options.noRateLimit) {
310311
args.push('--no-rate-limit');
312+
}
311313

312314
// Add --env-all flag
313315
if (options.envAll) {

0 commit comments

Comments
 (0)