Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
Fix unsupported architecture error on arm64 (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
skateman authored Apr 20, 2020
1 parent ce2cab6 commit 72dbf9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ada/hotword.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def _keyword_file_path(lib_path: Path) -> Path:

if machine == "x86_64":
return lib_path / "resources/keyword_files/linux/hey pico_linux.ppn"
if machine in ("armv7l", "armv6l"):
if machine in ("armv7l", "aarch64", "armv6l"):
return (
lib_path
/ "resources/keyword_files/raspberrypi/hey pico_raspberrypi.ppn"
Expand Down

0 comments on commit 72dbf9f

Please sign in to comment.