Skip to content

Commit 0220780

Browse files
Update mavsdk_server suffix following changes in MAVSDK repo
1 parent 52f94c2 commit 0220780

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ def platform_suffix(self):
5454
"""
5555
if sys.platform.startswith('linux') and 'MAVSDK_SERVER_ARCH' in os.environ:
5656
if os.environ['MAVSDK_SERVER_ARCH'] == "armv6l":
57-
return 'musl_armv6'
57+
return 'linux-armv6-musl'
5858
elif os.environ['MAVSDK_SERVER_ARCH'] == "armv7l":
59-
return 'musl_armv7'
59+
return 'linux-armv7l-musl'
6060
elif os.environ['MAVSDK_SERVER_ARCH'] == "aarch64":
61-
return 'musl_aarch64'
61+
return 'linux-arm64-musl'
6262
else:
6363
raise NotImplementedError(
6464
f"Error: unknown MAVSDK_SERVER_ARCH: {os.environ['MAVSDK_SERVER_ARCH']}")

0 commit comments

Comments
 (0)