diff options
| author | Dax Raad <[email protected]> | 2025-09-26 07:50:51 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-09-26 07:51:53 -0400 |
| commit | 80305813f5ba636813fd64f6ebade5cf4b1be4a1 (patch) | |
| tree | 5c2baab02651ab2eed8ec383ead5d3fad0403ba4 | |
| parent | 061877e275669eb07d68c4d1a3cfeefe7abbd076 (diff) | |
| download | opencode-80305813f5ba636813fd64f6ebade5cf4b1be4a1.tar.gz opencode-80305813f5ba636813fd64f6ebade5cf4b1be4a1.zip | |
disable aggressive config validation
| -rw-r--r-- | packages/opencode/src/config/config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/opencode/src/config/config.ts b/packages/opencode/src/config/config.ts index 9446c012e..ec4e6be94 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -60,7 +60,7 @@ export namespace Config { ] for (const dir of directories) { - await assertValid(dir) + await assertValid(dir).catch(() => {}) result.command = mergeDeep(result.command ?? {}, await loadCommand(dir)) result.agent = mergeDeep(result.agent, await loadAgent(dir)) result.agent = mergeDeep(result.agent, await loadMode(dir)) |
