chore: generate

This commit is contained in:
opencode-agent[bot] 2026-06-23 04:57:55 +00:00
parent 9b01f15f1d
commit 40db33c415

View File

@ -194,10 +194,9 @@ export function withCliFixture<A, E>(
const home = yield* fs.makeTempDirectory({ prefix: "oc-cli-" })
yield* Effect.addFinalizer(() =>
fs.remove(home, { recursive: true }).pipe(
Effect.retry(Schedule.spaced("50 millis").pipe(Schedule.both(Schedule.recurs(20)))),
Effect.ignore,
),
fs
.remove(home, { recursive: true })
.pipe(Effect.retry(Schedule.spaced("50 millis").pipe(Schedule.both(Schedule.recurs(20)))), Effect.ignore),
)
const configJson = JSON.stringify(testProviderConfig(llm.url))