Skip to content

Commit fae27f7

Browse files
authored
Deactivate macos-arm builds for now: fix binDirName (#6107)
1 parent 2deaedd commit fae27f7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

scripts/bin_path.js

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ var path = require("path");
1212
var binDirName =
1313
process.arch === "x64" ? process.platform : process.platform + process.arch;
1414

15+
// Deactivate support for macos-arm for now
16+
if (binDirName === "darwinarm64") {
17+
binDirName = "darwin";
18+
}
19+
1520
/**
1621
*
1722
* @type{string}

0 commit comments

Comments
 (0)