Skip to content

Commit

Permalink
Fix test selection to correctly identify RPi hardware as 'aarch64' an…
Browse files Browse the repository at this point in the history
…d not 'arm64' which is what Apple Silicon is now reporting.
  • Loading branch information
DocGarbanzo committed May 23, 2024
1 parent 1d29961 commit 488fdc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion donkeycar/tests/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


def on_pi():
if 'arm' in platform.machine():
if 'aarch64' in platform.machine():
return True
return False

Expand Down

0 comments on commit 488fdc1

Please sign in to comment.