1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/agora_ynh.git synced 2024-09-03 18:06:21 +02:00

Update upgrade

This commit is contained in:
yalh76 2022-03-14 23:12:04 +01:00
parent fdda1e9aae
commit 114e7cca3d

View file

@ -72,8 +72,14 @@ if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..."
tmpdir="$(mktemp -d)"
rsync -a "$final_path/DATAS" "$tmpdir/."
ynh_secure_remove --file="$final_path"
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path" --keep="DATAS/"
ynh_setup_source --dest_dir="$final_path"
rsync -a "$tmpdir/DATAS" "$final_path/."
ynh_secure_remove --file="$tmpdir"
fi
chmod 750 "$final_path"