From ea4cba1c34d8d647eeb7d175e399da0807d3c3a0 Mon Sep 17 00:00:00 2001 From: RecuencoJones Date: Wed, 12 Feb 2020 20:35:26 +0100 Subject: [PATCH] ADD missing arch mapping arm64 --- src/common.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common.js b/src/common.js index 5889166..07fd208 100644 --- a/src/common.js +++ b/src/common.js @@ -7,7 +7,8 @@ const mkdirp = require('mkdirp'); const ARCH_MAPPING = { ia32: '386', x64: 'amd64', - arm: 'arm' + arm: 'arm', + arm64: 'arm64' }; // Mapping between Node's `process.platform` to Golang's