1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nextcloud_ynh.git synced 2024-09-03 19:55:57 +02:00

Merge pull request #531 from lapineige/master

32 bit support :  warn but don't block upgrade/install (v25)
This commit is contained in:
Éric Gaspar 2022-12-10 18:57:08 +01:00 committed by GitHub
commit 7be82b975b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@ ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
# Check machine architecture (Seens 25.0 Nextcloud doesn't support 32bit machines)
if [ $YNH_ARCH == "i386" ] || [ $YNH_ARCH == "armhf" ]
then
ynh_die --message="Sorry, Nextcloud has deprecated 32-bit support"
ynh_print_warn --message="Nextcloud has deprecated 32-bit support. Version 25 is the last one to support 32-bit archytectures."
fi
#=================================================

View file

@ -37,7 +37,7 @@ upgrade_type=$(ynh_check_app_version_changed)
# Check machine architecture (Seens 25.0 Nextcloud doesn't support 32bit machines)
if [ $YNH_ARCH == "i386" ] || [ $YNH_ARCH == "armhf" ]
then
ynh_die --message="Sorry, Nextcloud has deprecated 32-bit support"
ynh_print_warn --message="Nextcloud has deprecated 32-bit support. Version 25 is the last one to support 32-bit archytectures."
fi
#=================================================