Allow X64 and X86 as synonyms for x64 and x86, respectively (#108)

This commit is contained in:
Dilum Aluthge
2022-06-23 18:26:05 -04:00
committed by GitHub
parent 631e68d88a
commit 40ab89a96a
2 changed files with 4 additions and 0 deletions

View File

@@ -18,7 +18,9 @@ const osMap = {
}
const archMap = {
'x86': 'i686',
'X86': 'i686',
'x64': 'x86_64',
'X64': 'x86_64',
'aarch64': 'aarch64',
'ARM64': 'aarch64'
}