This commit is contained in:
Jozef Steinhübl 2026-01-05 00:12:27 +01:00
parent cd6143a9b6
commit bc36c22716
No known key found for this signature in database
GPG Key ID: 8D9A5E4549AA84FD

View File

@ -43,7 +43,7 @@ export function getPlatform(): string {
}
export function getArchitecture(os: string, arch: string): string {
if (os == "windows" && arch === "arm64") {
if (os == "windows" && (arch === "aarch64" || arch === "arm64")) {
warning(
[
"⚠️ Bun does not provide native arm64 builds for Windows.",