summaryrefslogtreecommitdiffhomepage
path: root/script
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2025-12-31 12:05:35 -0600
committerAiden Cline <[email protected]>2025-12-31 12:05:35 -0600
commitdc3e731afe8685290834ce1227c54cd224820b43 (patch)
treeb3835948502505689991d9daadbfb3b320f47168 /script
parentde50e7f9b95c471332f145921c289e39980da479 (diff)
downloadopencode-dc3e731afe8685290834ce1227c54cd224820b43.tar.gz
opencode-dc3e731afe8685290834ce1227c54cd224820b43.zip
ci: tweak changelog ensure all cmd/ things fall under tui section
Diffstat (limited to 'script')
-rwxr-xr-xscript/changelog.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/changelog.ts b/script/changelog.ts
index 9e3b3c692..18fc60993 100755
--- a/script/changelog.ts
+++ b/script/changelog.ts
@@ -64,7 +64,7 @@ export async function getCommits(from: string, to: string): Promise<Commit[]> {
const areas = new Set<string>()
for (const file of files.split("\n").filter(Boolean)) {
- if (file.startsWith("packages/opencode/src/cli/cmd/tui/")) areas.add("tui")
+ if (file.startsWith("packages/opencode/src/cli/cmd/")) areas.add("tui")
else if (file.startsWith("packages/opencode/")) areas.add("core")
else if (file.startsWith("packages/desktop/src-tauri/")) areas.add("tauri")
else if (file.startsWith("packages/desktop/")) areas.add("app")