Skip to content

Commit 206fa8a

Browse files
committed
fix: resolve branding leaks from upstream merge
- Remove duplicate wasm URL in parsers-config.ts (upstream line after our marker) - Rebrand brew tap references from anomalyco/tap to AltimateAI/tap https://claude.ai/code/session_01FVE7bSfST5rpzbEmUhNiBU
1 parent 6f5eb34 commit 206fa8a

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

packages/opencode/parsers-config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,6 @@ export default {
218218
// altimate_change start — rebranded tree-sitter fork URL
219219
wasm: "https://github.com/AltimateAI/tree-sitter-clojure/releases/download/v0.0.1/tree-sitter-clojure.wasm",
220220
// altimate_change end
221-
wasm: "https://github.com/anomalyco/tree-sitter-clojure/releases/download/v0.0.1/tree-sitter-clojure.wasm",
222221
queries: {
223222
highlights: [
224223
"https://raw.githubusercontent.com/nvim-treesitter/nvim-treesitter/refs/heads/master/queries/clojure/highlights.scm",

packages/opencode/src/installation/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,12 +211,12 @@ export namespace Installation {
211211
...process.env,
212212
}
213213
if (formula.includes("/")) {
214-
const tap = await Process.run(["brew", "tap", "anomalyco/tap"], { env, nothrow: true })
214+
const tap = await Process.run(["brew", "tap", "AltimateAI/tap"], { env, nothrow: true })
215215
if (tap.code !== 0) {
216216
result = tap
217217
break
218218
}
219-
const repo = await Process.text(["brew", "--repo", "anomalyco/tap"], { env, nothrow: true })
219+
const repo = await Process.text(["brew", "--repo", "AltimateAI/tap"], { env, nothrow: true })
220220
if (repo.code !== 0) {
221221
result = repo
222222
break

0 commit comments

Comments
 (0)