Skip to content

Commit

Permalink
Allow ARM64 as a synonym for aarch64 (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
DilumAluthge authored Jun 23, 2022
1 parent a07a9b4 commit 631e68d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/installer.js

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

3 changes: 2 additions & 1 deletion src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ const osMap = {
const archMap = {
'x86': 'i686',
'x64': 'x86_64',
'aarch64': 'aarch64'
'aarch64': 'aarch64',
'ARM64': 'aarch64'
}

// Store information about the environment
Expand Down

0 comments on commit 631e68d

Please sign in to comment.