We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1e3575 commit 0304e17Copy full SHA for 0304e17
scripts/postinstall.js
@@ -15,7 +15,8 @@ const releases = {
15
};
16
17
const platform = process.platform;
18
-const arch = process.arch === "x64" ? "x86_64" : "x86_32";
+const arch =
19
+ process.arch === "x64" || process.arch === "arm64" ? "x86_64" : "x86_32";
20
const release = platform + "_" + arch;
21
const protocDirectory = path.join(__dirname, "..", "protoc");
22
0 commit comments