Skip to content

Commit

Permalink
Fix common.py for linux arm64 platfrom
Browse files Browse the repository at this point in the history
  • Loading branch information
Glavo committed Feb 25, 2023
1 parent 82cfc18 commit f7e419b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def system():
def machine():
parser = create_parser()
(args, _) = parser.parse_known_args()
return args.machine if args.machine else {'AMD64': 'x64', 'x86_64': 'x64', 'arm64': 'arm64'}[platform.machine()]
return args.machine if args.machine else {'AMD64': 'x64', 'x86_64': 'x64', 'arm64': 'arm64', 'aarch64': 'arm64'}[platform.machine()]

def version():
parser = create_parser()
Expand Down

0 comments on commit f7e419b

Please sign in to comment.