From 659f6c5a4c38ad419a295c05fce049aae66b8f80 Mon Sep 17 00:00:00 2001 From: Nathan Flurry Date: Sat, 19 Oct 2024 17:48:37 -0700 Subject: [PATCH] chore: add back all platforms to cross build --- scripts/build/build_cross.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/scripts/build/build_cross.ts b/scripts/build/build_cross.ts index 55a39340..39b91b88 100755 --- a/scripts/build/build_cross.ts +++ b/scripts/build/build_cross.ts @@ -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",