This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Drop the existing database, if any. | |
drush sql-drop -y; | |
# Remove the files from a previous install. | |
sudo rm -rf sites/default; | |
# Restore the directories and files that are included by Drupal. | |
sudo git checkout -- sites/default; | |
# Fix permissions and ownership problems caused by sudo. |