From 5f1c14c9153f19634e9a9aea9b62dab765de12f1 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 2 Apr 2022 09:41:21 +0200 Subject: [PATCH] Fix --- .github/.DS_Store | Bin 0 -> 6148 bytes .github/workflows/updater.sh | 12 ++++++------ 2 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 .github/.DS_Store diff --git a/.github/.DS_Store b/.github/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..1f2c43e08d5274b93912b69fb3819388184aaa7e GIT binary patch literal 6148 zcmeHKyG{c^3>=dbK{P2-?l15Mt0;Uyet-gzf+!~i0qs@!EAd3^dkpx%>-%<6eLdmaTQUY5@$#L2 zJnVR+`j)_T!)$n2UWUC3q;_1A2W+rRuGdm-AlR=#O--`J}sX9TbLW$HZvI h+;}@)MN!r@U-P^dj)_5MKIlaK47e^bDe%_{d;$Cv71IC! literal 0 HcmV?d00001 diff --git a/.github/workflows/updater.sh b/.github/workflows/updater.sh index c4d53fc..f6ab54d 100755 --- a/.github/workflows/updater.sh +++ b/.github/workflows/updater.sh @@ -66,14 +66,14 @@ 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 - *"admin"*) - src="app" + *"/linux-amd64-filebrowser.tar.gz"*) + src="amd64" ;; - *"update"*) - src="app-upgrade" + *"/linux-arm64-filebrowser.tar.gz"*) + src="arm64" ;; - *) - src="" + *"/linux-armv7-filebrowser.tar.gz"*) + src="armhf" ;; esac