cloudaxe-opencode/packages/desktop/scripts/copy-icons.ts

13 lines
367 B
TypeScript
Raw Permalink Normal View History

2026-03-04 07:12:34 +00:00
import { $ } from "bun"
import { resolveChannel } from "./utils"
const arg = process.argv[2]
const channel = arg === "dev" || arg === "beta" || arg === "prod" ? arg : resolveChannel()
const src = `./icons/${channel}`
const dest = "resources/icons"
await $`rm -rf ${dest}`
await $`cp -R ${src} ${dest}`
console.log(`Copied ${channel} icons from ${src} to ${dest}`)