Skip to content

Commit

Permalink
Update goplatform.py
Browse files Browse the repository at this point in the history
  • Loading branch information
neurlang authored Oct 5, 2024
1 parent ccc6633 commit eac3b9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygoruut/goplatform.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def _determine_architecture(self):
return Architecture.AMD64
elif machine == 'i386' or machine == 'i686':
return Architecture.I386
elif machine.startswith('arm'):
elif machine.startswith('arm') or machine.startswith('aarch'):
if '64' in machine:
return Architecture.ARM64
else:
Expand Down

0 comments on commit eac3b9f

Please sign in to comment.