diff options
| author | Connor Adams <[email protected]> | 2025-12-28 01:10:51 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-12-27 19:10:51 -0600 |
| commit | 8a2f4ddf70813aa37c69810d5c5a96a1388dd6fa (patch) | |
| tree | edb8f7e70a92b31a3822b7c9a3b6568d0092789b | |
| parent | 7a94d7a2c5a12c9fbda987b8c63dddd5df3f1393 (diff) | |
| download | opencode-8a2f4ddf70813aa37c69810d5c5a96a1388dd6fa.tar.gz opencode-8a2f4ddf70813aa37c69810d5c5a96a1388dd6fa.zip | |
chore: update `INVALID_DIRS` to include plural 'skills' directory (#6255)
| -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 c94a34be0..807cd46fd 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -155,7 +155,7 @@ export namespace Config { } }) - const INVALID_DIRS = new Bun.Glob(`{${["agents", "commands", "plugins", "tools"].join(",")}}/`) + const INVALID_DIRS = new Bun.Glob(`{${["agents", "commands", "plugins", "tools", "skills"].join(",")}}/`) async function assertValid(dir: string) { const invalid = await Array.fromAsync( INVALID_DIRS.scan({ |
