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

Check if folder exist before chmod (fix CI)

This commit is contained in:
lapineige 2023-05-04 23:06:33 +02:00 committed by GitHub
parent 2d149fd9f6
commit 7b330d3047
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -196,7 +196,9 @@ ynh_script_progression --message="Patching permissions (for version 0.11.5 and n
# Default configuration doesn't work # Default configuration doesn't work
ynh_replace_string --match_string="'private' => 0700," --replace_string="'private' => 0750," --target_file=$final_path/config/filesystems.php ynh_replace_string --match_string="'private' => 0700," --replace_string="'private' => 0750," --target_file=$final_path/config/filesystems.php
# Repair permissions for files created after v0.11.5 and before this patch # Repair permissions for files created after v0.11.5 and before this patch
if [ -d "$final_path/public/storage/m/_v2/" ]; then
chmod 750 -R "$final_path/public/storage/m/_v2/" chmod 750 -R "$final_path/public/storage/m/_v2/"
fi
#================================================= #=================================================
# DEPLOYMENT # DEPLOYMENT