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

rm -r -> ynh_secure_remove

This commit is contained in:
Alexandre Aubin 2020-11-09 16:07:27 +01:00 committed by GitHub
parent 4ce8fb11e2
commit cd5600b218
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -68,9 +68,9 @@ if [ "$upgrade_type" == "UPGRADE_APP" ]; then
ynh_setup_source --dest_dir="$tmpdir"
## clean & copy files needed to final folder
myynh_clean_source
[ -e "$tmpdir/config.php" ] && rm "$tmpdir/config.php"
[ -e "$tmpdir/config.php" ] && ynh_secure_remove "$tmpdir/config.php"
cp -a "$tmpdir/." "$final_path"
rm -R "$tmpdir"
ynh_secure_remove "$tmpdir"
## set permissions
myynh_set_permissions
fi