From c8e17655441744e88dd3b45f96f824052fda79a3 Mon Sep 17 00:00:00 2001 From: CodeSmithian Date: Mon, 19 Aug 2024 11:04:56 -0500 Subject: [PATCH] Fix arm64 plex build string (#112) --- root/installBinary.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/installBinary.sh b/root/installBinary.sh index b3d2ba3..44a5853 100755 --- a/root/installBinary.sh +++ b/root/installBinary.sh @@ -8,7 +8,7 @@ if [ "${TARGETPLATFORM}" = 'linux/arm/v7' ]; then elif [ "${TARGETARCH}" = 'amd64' ]; then PLEX_BUILD='linux-x86_64'; elif [ "${TARGETARCH}" = 'arm64' ]; then - PLEX_BUILD='aarch64' ; + PLEX_BUILD='linux-aarch64' ; fi addVarToConf "version" "${TAG}"