From f374ba84a76fe73ca318f824019553e2dd7e0745 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Tue, 3 Dec 2024 22:05:48 +0000 Subject: [PATCH] fix: musl builds for oss builds too --- apps/cli/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/cli/package.json b/apps/cli/package.json index 4a9903a06f8..17f0b84ff6b 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -39,6 +39,7 @@ "package:oss:win": "pkg . --targets win-x64 --output ./dist/oss/windows/bw.exe", "package:oss:mac": "pkg . --targets macos-x64 --output ./dist/oss/macos/bw", "package:oss:lin": "pkg . --targets linux-x64 --output ./dist/oss/linux/bw", + "package:oss:lin-musl": "pkg . --targets alpine --output ./dist/oss/linux-musl/bw", "package:bit:win": "pkg . --targets win-x64 --output ./dist/bit/windows/bw.exe", "package:bit:mac": "pkg . --targets macos-x64 --output ./dist/bit/macos/bw", "package:bit:lin": "pkg . --targets linux-x64 --output ./dist/bit/linux/bw",