summaryrefslogtreecommitdiffhomepage
path: root/packages
diff options
context:
space:
mode:
authorCaleb Norton <[email protected]>2026-01-18 11:14:13 -0600
committerGitHub <[email protected]>2026-01-18 11:14:13 -0600
commitdac099a4892689d11abedb0fcc1098b50e0958c8 (patch)
treeb47a7a4bae294e0d4222fac21605a380d54b3341 /packages
parent5009f10406c15c4b69c04fa626756ee7bf81b300 (diff)
downloadopencode-dac099a4892689d11abedb0fcc1098b50e0958c8.tar.gz
opencode-dac099a4892689d11abedb0fcc1098b50e0958c8.zip
feat(nix): overhaul nix flake and packages (#9032)
Diffstat (limited to 'packages')
-rwxr-xr-xpackages/opencode/script/build.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/opencode/script/build.ts b/packages/opencode/script/build.ts
index 61a665312..cb88db2c4 100755
--- a/packages/opencode/script/build.ts
+++ b/packages/opencode/script/build.ts
@@ -90,6 +90,11 @@ const targets = singleFlag
return baselineFlag
}
+ // also skip abi-specific builds for the same reason
+ if (item.abi !== undefined) {
+ return false
+ }
+
return true
})
: allTargets