chore: generate

This commit is contained in:
opencode-agent[bot] 2026-08-10 17:00:23 +00:00
parent c22942c1f3
commit be53e3bd81

View file

@ -151,13 +151,15 @@ export const layer = (options?: Options) =>
)
if (!credential || credential.value.type !== "key") return []
const variables = { [auth.env]: credential.value.key }
const configs = yield* wellknown.resolve(entry, variables).pipe(
Effect.catch(() =>
Effect.logWarning("failed to load wellknown config", { source: entry.origin }).pipe(
Effect.as([] as const),
const configs = yield* wellknown
.resolve(entry, variables)
.pipe(
Effect.catch(() =>
Effect.logWarning("failed to load wellknown config", { source: entry.origin }).pipe(
Effect.as([] as const),
),
),
),
)
)
return yield* Effect.forEach(configs, (config) =>
ConfigVariable.substitute({
type: "virtual",