Fix arm64 plex build string (#112)

This commit is contained in:
CodeSmithian 2024-08-19 11:04:56 -05:00 committed by GitHub
parent bf68951537
commit c8e1765544
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,7 +8,7 @@ if [ "${TARGETPLATFORM}" = 'linux/arm/v7' ]; then
elif [ "${TARGETARCH}" = 'amd64' ]; then elif [ "${TARGETARCH}" = 'amd64' ]; then
PLEX_BUILD='linux-x86_64'; PLEX_BUILD='linux-x86_64';
elif [ "${TARGETARCH}" = 'arm64' ]; then elif [ "${TARGETARCH}" = 'arm64' ]; then
PLEX_BUILD='aarch64' ; PLEX_BUILD='linux-aarch64' ;
fi fi
addVarToConf "version" "${TAG}" addVarToConf "version" "${TAG}"