Compare commits

...

1 commit

Author SHA1 Message Date
ericgaspar
0c33e19229 Update upgrade 2021-08-19 20:24:24 +02:00

View file

@ -38,9 +38,11 @@ upgrade_type=$(ynh_check_app_version_changed)
#================================================= #=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP # BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#================================================= #=================================================
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --time --weight=1
# Backup the current version of the app # Backup the current version of the app unless --no_safety_backup option is used
if [ "$NO_BACKUP_UPGRADE" -eq 0 ]
then
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --time --weight=1
ynh_backup_before_upgrade ynh_backup_before_upgrade
ynh_clean_setup () { ynh_clean_setup () {
# Restore it if the upgrade fails # Restore it if the upgrade fails
@ -48,6 +50,7 @@ ynh_clean_setup () {
} }
# Exit if an error occurs during the execution of the script # Exit if an error occurs during the execution of the script
ynh_abort_if_errors ynh_abort_if_errors
fi
#================================================= #=================================================
# STANDARD UPGRADE STEPS # STANDARD UPGRADE STEPS