We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5d600e3 + d0fa113 commit 81e2d02Copy full SHA for 81e2d02
drupal_fix_permissions.sh
@@ -159,7 +159,7 @@ is_drupal_root() {
159
# Globals:
160
# drupal_user: user to own the files and directories.
161
# httpd_group: group to own the files and directories.
162
-function fix_onwership() {
+function fix_ownership() {
163
case $simulate in
164
0)
165
# Real action.
@@ -456,9 +456,9 @@ printf "\nProcessing Drupal installed on '$complete_drupal_path'"
456
457
# First, fix ownership.
458
printf "\nFixing ownership of files and directories"
459
-fix_onwership "$complete_drupal_path"
+fix_ownership "$complete_drupal_path"
460
echo "$additional_files_paths"| while read path; do
461
- [ -d "$path" ] && fix_onwership "$path"
+ [ -d "$path" ] && fix_ownership "$path"
462
done
463
464
# Second, fix permissions on code.
0 commit comments