summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Hill <[email protected]>2025-12-11 14:37:05 +0000
committerDavid Hill <[email protected]>2025-12-11 14:37:05 +0000
commit5ffc1617feb41439ae24c6e43115888220ec8bc8 (patch)
tree9034b668b978d75a17a8c0714b2b380cc3af4081
parent93dd01947de81c79edf6eb3df763fff9ab8878c7 (diff)
parent5e7d908dc9d1ecb00f7b7aee4b8b68e26232c50a (diff)
downloadopencode-5ffc1617feb41439ae24c6e43115888220ec8bc8.tar.gz
opencode-5ffc1617feb41439ae24c6e43115888220ec8bc8.zip
Merge branch 'dev' of https://github.com/sst/opencode into dev
-rw-r--r--packages/tauri/scripts/predev.ts5
1 files changed, 1 insertions, 4 deletions
diff --git a/packages/tauri/scripts/predev.ts b/packages/tauri/scripts/predev.ts
index bd9320a4a..6b69a3ae5 100644
--- a/packages/tauri/scripts/predev.ts
+++ b/packages/tauri/scripts/predev.ts
@@ -9,9 +9,6 @@ const sidecarConfig = getCurrentSidecar(RUST_TARGET)
const binaryPath = `../opencode/dist/${sidecarConfig.ocBinary}/bin/opencode`
-if (!(await fs.exists(binaryPath))) {
- console.log("opencode binary not found, building...")
- await $`cd ../opencode && bun run build --single`
-}
+await $`cd ../opencode && bun run build --single`
await copyBinaryToSidecarFolder(binaryPath, RUST_TARGET)