1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/filebrowser_ynh.git synced 2024-09-03 18:36:05 +02:00
This commit is contained in:
ericgaspar 2022-04-02 09:41:21 +02:00
parent 65e5a1cd15
commit 5f1c14c915
2 changed files with 6 additions and 6 deletions

BIN
.github/.DS_Store vendored Normal file

Binary file not shown.

View file

@ -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) # 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 # Leave $src empty to ignore the asset
case $asset_url in case $asset_url in
*"admin"*) *"/linux-amd64-filebrowser.tar.gz"*)
src="app" src="amd64"
;; ;;
*"update"*) *"/linux-arm64-filebrowser.tar.gz"*)
src="app-upgrade" src="arm64"
;; ;;
*) *"/linux-armv7-filebrowser.tar.gz"*)
src="" src="armhf"
;; ;;
esac esac