1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/radarr_ynh.git synced 2024-09-03 20:16:13 +02:00

Reorder asset handling for ARM vs ARM64

This commit is contained in:
tituspijean 2022-03-13 17:38:05 +01:00
parent 10a42f7684
commit 41007a55a1
No known key found for this signature in database
GPG key ID: EF3B0D7CC0A94720

View file

@ -63,12 +63,12 @@ echo "Handling asset at $asset_url"
# Here we base the source file name upon a unique keyword in the assets url (admin vs. update)
# Leave $src empty to ignore the asset
case $asset_url in
*"linux-core-arm"*)
src="app.arm"
;;
*"linux-core-arm64"*)
src="app.arm64"
;;
*"linux-core-arm"*)
src="app.arm"
;;
*"linux-core-x64"*)
src="app.x64"
;;