mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Merge pull request #14146 from sblaisot/fix/dev-bundle-arch-apple-silicon
Fix: enable dev-bundle fast path on Apple Silicon Macs
This commit is contained in:
@@ -218,6 +218,9 @@ function getHostArch() {
|
||||
}
|
||||
|
||||
if (process.platform === "darwin") {
|
||||
if (process.arch === "arm64") {
|
||||
return "os.osx.arm64";
|
||||
}
|
||||
return "os.osx.x86_64";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user