diff options
| author | Dax Raad <[email protected]> | 2025-09-22 01:47:28 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-09-22 01:47:28 -0400 |
| commit | 9b1a50865758692303c52e7eeb226a4a6175b646 (patch) | |
| tree | 45de5c2ee1aadbe7ca38c89393e9d8635ee8518c | |
| parent | 288c977596ed3f6eaf2149fdcabffa415c8e5e50 (diff) | |
| download | opencode-9b1a50865758692303c52e7eeb226a4a6175b646.tar.gz opencode-9b1a50865758692303c52e7eeb226a4a6175b646.zip | |
ci: bump
| -rwxr-xr-x | packages/opencode/script/build.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/opencode/script/build.ts b/packages/opencode/script/build.ts index f54c8ab0d..02090c69f 100755 --- a/packages/opencode/script/build.ts +++ b/packages/opencode/script/build.ts @@ -29,9 +29,9 @@ for (const [os, arch] of targets) { console.log(`building ${os}-${arch}`) const name = `${pkg.name}-${os}-${arch}` await $`mkdir -p dist/${name}/bin` - await $`CGO_ENABLED=0 GOOS=${os} GOARCH=${GOARCH[arch]} go build -ldflags="-s -w -X main.Version=${version}" -o ../opencode/dist/${name}/bin/tui ../tui/cmd/opencode/main.go`.cwd( - "../tui", - ) + await $`CGO_ENABLED=0 GOOS=${os} GOARCH=${GOARCH[arch]} go build -ldflags="-s -w -X main.Version=${version}" -o ../opencode/dist/${name}/bin/tui ../tui/cmd/opencode/main.go` + .cwd("../tui") + .quiet() await Bun.build({ compile: { target: `bun-${os}-${arch}` as any, |
