From 7c471bb6b87be37c8119e7a83baa53bc6b6391b7 Mon Sep 17 00:00:00 2001 From: lapineige Date: Mon, 8 May 2023 23:04:39 +0200 Subject: [PATCH] fix wildcard syntax It doesn't work within quotes --- scripts/upgrade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/upgrade b/scripts/upgrade index 59c4d1f9..3826778a 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -197,7 +197,7 @@ ynh_script_progression --message="Patching permissions (for version 0.11.5 and n 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 if [ -d "$final_path/public/storage/m/_v2/" ]; then - chmod 750 -R "$final_path/public/storage/m/_v2/*" # all files subdirectories (picture folders) should be readable and executable. But if there is no picture, there is no /*/* + chmod 750 -R "$final_path/public/storage/m/_v2/"* # all files subdirectories (picture folders) should be readable and executable. But if there is no picture, there is no /*/* chmod 770 "$final_path/public/storage/m/_v2/" # this should be 770 chmod 770 "$final_path/public/storage/m/_v2/*" # users folders should be 770 fi