From f92ee0edd5f1389668bc85a322a15fdccd7bc7d6 Mon Sep 17 00:00:00 2001 From: Sean Collins Date: Wed, 1 Dec 2021 00:23:23 -0500 Subject: [PATCH] Expand npm installer to include ARM64 Linux See: https://github.com/elm/compiler/issues/2232#issuecomment-983298553 --- installers/npm/download.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/installers/npm/download.js b/installers/npm/download.js index 73cd838df..48c429e91 100644 --- a/installers/npm/download.js +++ b/installers/npm/download.js @@ -21,7 +21,8 @@ module.exports = function(callback) darwin_x64: 'mac-64-bit', darwin_arm64: 'mac-64-bit', win32_x64: 'windows-64-bit', - linux_x64: 'linux-64-bit' + linux_x64: 'linux-64-bit', + linux_arm64: 'linux-64-bit' }[process.platform + '_' + process.arch]; verifyPlatform(version, platform);