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

Fix auto-updater

This commit is contained in:
tituspijean 2022-05-22 15:36:04 +02:00
parent 462cc7cc53
commit ffdc02a5a6
No known key found for this signature in database
GPG key ID: EF3B0D7CC0A94720

View file

@ -64,13 +64,13 @@ 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"*)
*"linux-core-arm.tar.gz")
src="app.arm"
;;
*"linux-core-arm64"*)
*"linux-core-arm64.tar.gz")
src="app.arm64"
;;
*"linux-core-x64"*)
*"linux-core-x64.tar.gz")
src="app.x64"
;;
*)