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

fix upgrade

This commit is contained in:
Kay0u 2020-03-19 11:36:41 +01:00
parent 2b81bf7731
commit 4e130d43e1
No known key found for this signature in database
GPG key ID: 7FF262C033518333

View file

@ -158,6 +158,8 @@ shopt -s extglob
datapath=/home/yunohost.app/$app
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
# Install files and set permissions
cp -a $tmpdir/!(upload|_data|galleries) $final_path
@ -177,12 +179,13 @@ if [ ! -h $final_path/galleries ] ; then
ln -sd $datapath/galleries $final_path/galleries
fi
ynh_secure_remove --file="$tmpdir"
fi
chown -R $app: $final_path
chown -R $app: $datapath
chmod 755 -R $final_path/_data
ynh_secure_remove --file="$tmpdir"
#=================================================
# UPGRADE APPLICATION WITH CURL
#=================================================