mirror of
https://github.com/YunoHost-Apps/garradin_ynh.git
synced 2024-09-03 18:36:17 +02:00
simplify conditions if pre-upgrade is needed
This commit is contained in:
parent
e6473d4c7c
commit
8a1aa389c5
1 changed files with 4 additions and 9 deletions
|
@ -25,13 +25,7 @@ phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
|
|||
# CHECK VERSION
|
||||
#=================================================
|
||||
|
||||
if ynh_compare_current_package_version --comparison lt --version 0.9.8.1~ynh1; then
|
||||
upgrade_type="0.9.8"
|
||||
elif ynh_compare_current_package_version --comparison le --version 1.0.7~ynh2; then
|
||||
upgrade_type="1.1.0"
|
||||
else
|
||||
upgrade_type=$(ynh_check_app_version_changed)
|
||||
fi
|
||||
upgrade_type=$(ynh_check_app_version_changed)
|
||||
|
||||
#=================================================
|
||||
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
||||
|
@ -85,7 +79,8 @@ fi
|
|||
# UPGRADE TO 0.9.8 if necessary
|
||||
#=================================================
|
||||
|
||||
if [ "$upgrade_type" == "0.9.8" ]
|
||||
if ynh_compare_current_package_version --comparison lt --version 0.9.8.1~ynh1
|
||||
|
||||
then
|
||||
ynh_script_progression --message="Upgrading upgrade to 0.9.8" --weight=5
|
||||
# Download, check integrity, uncompress and patch the source from 0.9.8.src
|
||||
|
@ -134,7 +129,7 @@ fi
|
|||
# UPGRADE TO 1.1.0 if necessary
|
||||
#=================================================
|
||||
|
||||
if [ "$upgrade_type" == "1.1.0" ]
|
||||
if ynh_compare_current_package_version --comparison lt --version 0.1.1.0~ynh1
|
||||
then
|
||||
ynh_script_progression --message="Upgrading upgrade to 1.1.0" --weight=5
|
||||
# Download, check integrity, uncompress and patch the source from 0.9.8.src
|
||||
|
|
Loading…
Reference in a new issue