From 19ed2238cd1d932e12e3e738b834d817863b2346 Mon Sep 17 00:00:00 2001 From: Andrew Hlynskyi Date: Sun, 16 Jul 2023 15:42:29 +0300 Subject: [PATCH] Fix arch mappings in install.js --- cli/npm/install.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cli/npm/install.js b/cli/npm/install.js index 01fcfa6b..8142afe2 100755 --- a/cli/npm/install.js +++ b/cli/npm/install.js @@ -23,11 +23,11 @@ const matrix = { 'arm': { name: 'arm' }, 'x64': { name: 'x64' }, 'x86': { name: 'x86' }, - 'mipsel': { name: 'x64' }, - 'mips64el': { name: 'x64' }, - 'ppc64el': { name: 'x64' }, - 'i586': { name: 'x64' }, - 'riscv64gc': { name: 'x86_64' }, + 'i586': { name: 'i586' }, + 'mipsel': { name: 'mipsel' }, + 'mips64el': { name: 'mips64el' }, + 'ppc64el': { name: 'ppc64el' }, + 'riscv64gc': { name: 'riscv64gc' }, } }, 'win32': {