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

Merge pull request #14 from YunoHost-Apps/testing

Fix auto-updater
This commit is contained in:
yalh76 2022-06-26 18:21:22 +02:00 committed by GitHub
commit 6a22b3cd40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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"
;;
*)