diff options
| author | Aiden Cline <[email protected]> | 2025-08-19 18:08:56 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-19 18:08:56 -0500 |
| commit | 5b05ede748095865d3dc3a69790b01da92f1e6dd (patch) | |
| tree | 54b38d117ef6de63694781907219821b8f793426 /packages | |
| parent | 40324261852d7f576e5c9e3b7624130e23cbf037 (diff) | |
| download | opencode-5b05ede748095865d3dc3a69790b01da92f1e6dd.tar.gz opencode-5b05ede748095865d3dc3a69790b01da92f1e6dd.zip | |
fix: agent casing issue (#2081)
Diffstat (limited to 'packages')
| -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 752014c53..13a009ad9 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -64,7 +64,7 @@ export namespace Config { if (agentFolderPath.includes("/")) { const relativePath = agentFolderPath.replace(".md", "") const pathParts = relativePath.split("/") - agentName = pathParts.slice(0, -1).join("/").toUpperCase() + "/" + pathParts[pathParts.length - 1].toUpperCase() + agentName = pathParts.slice(0, -1).join("/") + "/" + pathParts[pathParts.length - 1] } const config = { |
