diff options
-rwxr-xr-x | files/drupal | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/files/drupal b/files/drupal index 50b0fcc..4a51fda 100755 --- a/files/drupal +++ b/files/drupal @@ -295,8 +295,9 @@ function drupal_upgrade { # Copy installation themes and modules for Drupal 8 or newer if [ "$new_major" != "5" ] && [ "$new_major" != "6" ] && [ "$new_major" != "7" ]; then - rsync -av ../drupal-$old/modules/ modules/ - rsync -av ../drupal-$old/themes/ themes/ + rsync -av ../drupal-$old/modules/ modules/ + rsync -av ../drupal-$old/themes/ themes/ + rsync -av ../drupal-$old/libraries/ libraries/ fi # Change symlink to point to the new location |