mirror of
https://github.com/YunoHost-Apps/nextcloud_ynh.git
synced 2024-09-03 19:55:57 +02:00
Fix backward upgrade compatibility
This commit is contained in:
parent
79ac36bc28
commit
9f1312d308
1 changed files with 4 additions and 2 deletions
|
@ -207,10 +207,12 @@ ynh_add_nginx_config
|
|||
|
||||
# Define a function to execute commands with `occ`
|
||||
exec_occ() {
|
||||
# Backward compatibility to upgrade from NC14 or older version
|
||||
if [ $current_major_version = "last" ] || [ $current_major_version -ge 15 ]
|
||||
# Backward compatibility to upgrade from older versions
|
||||
if [ $current_major_version = "last" ] || [ $current_major_version -ge 20 ]
|
||||
then
|
||||
NEXTCLOUD_PHP_VERSION=$phpversion
|
||||
elif [ $current_major_version -ge 15 ]
|
||||
NEXTCLOUD_PHP_VERSION="7.4"
|
||||
else
|
||||
NEXTCLOUD_PHP_VERSION="7.0"
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue