Skip to content
This repository has been archived by the owner on Dec 21, 2024. It is now read-only.

Commit

Permalink
chore: add back all platforms to cross build (#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Nov 18, 2024
1 parent 598d2e5 commit 3e2ec00
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions scripts/build/build_cross.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,21 +110,21 @@ async function buildAndCopyCrossPlatform(
await Deno.remove(outDir, { recursive: true }).catch(() => {});

const platforms: Platform[] = [
// {
// name: "linux_x86_64",
// target: "x86_64-unknown-linux-gnu",
// files: [],
// },
{
name: "linux_x86_64",
target: "x86_64-unknown-linux-gnu",
files: [],
},
{
name: "windows_x86_64",
target: "x86_64-pc-windows-gnu",
files: [],
},
// {
// name: "macos_x86_64",
// target: "x86_64-apple-darwin",
// files: [],
// },
{
name: "macos_x86_64",
target: "x86_64-apple-darwin",
files: [],
},
{
name: "macos_arm64",
target: "aarch64-apple-darwin",
Expand Down

0 comments on commit 3e2ec00

Please sign in to comment.