arch input: accept x86_64 as a synonym for x64 (#264)

* `arch` input: accept `x86_64` as a synonym for `x64`

* npm ci && npm run build && npm run pack
This commit is contained in:
Dilum Aluthge
2024-09-23 19:35:48 -04:00
committed by GitHub
parent d6ffb3065b
commit be1659352d
3 changed files with 3 additions and 0 deletions

1
dist/index.js vendored
View File

@@ -538,6 +538,7 @@ const installer = __importStar(__nccwpck_require__(1480));
const archSynonyms = {
'x86': 'x86',
'x64': 'x64',
'x86_64': 'x64',
'aarch64': 'aarch64',
'arm64': 'aarch64'
};

1
lib/setup-julia.js generated
View File

@@ -46,6 +46,7 @@ const installer = __importStar(require("./installer"));
const archSynonyms = {
'x86': 'x86',
'x64': 'x64',
'x86_64': 'x64',
'aarch64': 'aarch64',
'arm64': 'aarch64'
};

View File

@@ -15,6 +15,7 @@ import * as installer from './installer'
const archSynonyms = {
'x86': 'x86',
'x64': 'x64',
'x86_64': 'x64',
'aarch64': 'aarch64',
'arm64': 'aarch64'
}