Allow aarch64 architecture (#606)
authorDaniel Dietzler <36593685+danieldietzler@users.noreply.github.com>
Sun, 2 Apr 2023 16:55:36 +0000 (18:55 +0200)
committerGitHub <noreply@github.com>
Sun, 2 Apr 2023 16:55:36 +0000 (18:55 +0200)
* Allow aarch64 architecture

* Update music_assistant/server/providers/airplay/__init__.py

---------

Co-authored-by: Marcel van der Veldt <m.vanderveldt@outlook.com>
music_assistant/server/providers/airplay/__init__.py

index 8a5a6bc4a6adbd2dbe7e58edb5c94538b29d260b..4625738cd52bbadab7defcd0c5fd4e190d278e37 100644 (file)
@@ -277,7 +277,7 @@ class AirplayProvider(PlayerProvider):
                     return bridge_binary
 
             # other linux architecture... try all options one by one...
-            for arch in ["arm64", "arm", "armv6", "mips", "sparc64", "x86"]:
+            for arch in ["aarch64", "arm", "armv6", "mips", "sparc64", "x86"]:
                 if bridge_binary := await check_bridge_binary(
                     os.path.join(base_path, f"squeeze2raop-linux-{arch}-static")
                 ):