Forked from OpenCode v1.17.4 with multi-agent system: - 5 agents: aircoding, scheduler, worker, architect, reviewer - Deterministic DAG scheduling engine (coordinator_tick) - Tool whitelists as hard enforcement - AirCoding validation plugin - V1 requirements: C4 docs, ADR, AGENTS.md, debug-log.md - Design documents in docs/
13 lines
367 B
TypeScript
13 lines
367 B
TypeScript
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}`)
|