Fix arch mappings in install.js

This commit is contained in:
Andrew Hlynskyi 2023-07-16 15:42:29 +03:00
parent 975f3f4686
commit 19ed2238cd

View file

@ -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': {