- #!/usr/bin/env bun
- import { $ } from "bun"
- import { downloadCliToResources, resolveChannel } from "./utils"
- const channel = resolveChannel()
- await $`bun ./scripts/copy-icons.ts ${channel}`
- await $`bun ./scripts/copy-metainfo.ts ${channel}`
- if (channel === "dev") await downloadCliToResources()
|