mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 05:43:55 +00:00
25 lines
793 B
TypeScript
Executable File
25 lines
793 B
TypeScript
Executable File
#!/usr/bin/env bun
|
|
import { $ } from "bun"
|
|
|
|
import { Script } from "@opencode-ai/script"
|
|
import { copyBinaryToSidecarFolder, getCurrentSidecar, resolveChannel, windowsify } from "./utils"
|
|
|
|
const channel = resolveChannel()
|
|
await $`bun ./scripts/copy-icons.ts ${channel}`
|
|
|
|
const pkg = await Bun.file("./package.json").json()
|
|
pkg.version = Script.version
|
|
await Bun.write("./package.json", JSON.stringify(pkg, null, 2) + "\n")
|
|
console.log(`Updated package.json version to ${Script.version}`)
|
|
|
|
const sidecarConfig = getCurrentSidecar()
|
|
|
|
const dir = "resources/opencode-binaries"
|
|
|
|
await $`mkdir -p ${dir}`
|
|
await $`gh run download ${Bun.env.GITHUB_RUN_ID} -n opencode-cli`.cwd(dir)
|
|
|
|
await copyBinaryToSidecarFolder(windowsify(`${dir}/${sidecarConfig.ocBinary}/bin/opencode`))
|
|
|
|
await $`rm -rf ${dir}`
|