Skip to content

Commit

Permalink
arch input: accept x86_64 as a synonym for x64 (#264)
Browse files Browse the repository at this point in the history
* `arch` input: accept `x86_64` as a synonym for `x64`

* npm ci && npm run build && npm run pack
  • Loading branch information
DilumAluthge committed Sep 23, 2024
1 parent d6ffb30 commit be16593
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,7 @@ const installer = __importStar(__nccwpck_require__(1480));
const archSynonyms = {
'x86': 'x86',
'x64': 'x64',
'x86_64': 'x64',
'aarch64': 'aarch64',
'arm64': 'aarch64'
};
Expand Down
1 change: 1 addition & 0 deletions lib/setup-julia.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/setup-julia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import * as installer from './installer'
const archSynonyms = {
'x86': 'x86',
'x64': 'x64',
'x86_64': 'x64',
'aarch64': 'aarch64',
'arm64': 'aarch64'
}
Expand Down

0 comments on commit be16593

Please sign in to comment.