diff --git a/manifest.toml b/manifest.toml index 6ae2931..3ee4dee 100644 --- a/manifest.toml +++ b/manifest.toml @@ -60,10 +60,6 @@ ram.runtime = "50M" extract = true format = "zip" - autoupdate.strategy = "latest_gitlab_release" - autoupdate.asset.api = "api.*" - autoupdate.asset.front = "front.*" - [resources.ports] [resources.system_user] diff --git a/scripts/upgrade b/scripts/upgrade index 2f78ea1..65a462f 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -33,14 +33,10 @@ ynh_systemd_action --action="stop" --service_name="${app}-worker" --log_path="sy if [ "$upgrade_type" == "UPGRADE_APP" ] then ynh_script_progression --message="Upgrading source files..." --weight=1 - - # Remove the old files - ynh_secure_remove --file="$install_dir/api" - ynh_secure_remove --file="$install_dir/front" # Download, check integrity, uncompress and patch the source from app.src - ynh_setup_source --dest_dir="$install_dir/api" --source_id="api" - ynh_setup_source --dest_dir="$install_dir/front" --source_id="front" + ynh_setup_source --dest_dir="$install_dir/api" --source_id="api" --full_replace=1 + ynh_setup_source --dest_dir="$install_dir/front" --source_id="front" --full_replace=1 fi #=================================================