Skip to content

Commit

Permalink
Fix bash test for additional_files_paths presence
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhattan committed Nov 11, 2024
1 parent 81e2d02 commit fa23179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drupal_fix_permissions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ do
[ -d "$site_folder/$private_folder_name" ] && fix_content_permissions "$site_folder/$private_folder_name"
done

[ -z "$additional_files_paths" ] && printf "\nProcessing additional content folders"
[ -n "$additional_files_paths" ] && printf "\nProcessing additional content folders"
echo "$additional_files_paths"| while read path; do
[ -d "$path" ] && fix_content_permissions "$path"
done
Expand Down

0 comments on commit fa23179

Please sign in to comment.