diff --git a/npm/binary.js b/npm/binary.js index 6671545..96fc5ac 100644 --- a/npm/binary.js +++ b/npm/binary.js @@ -13,6 +13,9 @@ const getPlatform = () => { if (type === "Linux" && arch === "x64") { return "x86_64-unknown-linux-musl"; } + if (type === "Linux" && arch === "arm64") { + return "aarch64-unknown-linux-musl"; + } if (type === "Darwin" && (arch === "x64" || arch === "arm64")) { return "x86_64-apple-darwin"; }