Created
October 30, 2013 09:12
-
-
Save mikebell/7229433 to your computer and use it in GitHub Desktop.
Sometimes Drupal doesn't want to play ball first thing on a Wednesday morning.
This file contains 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 | |
COUNTER=0 | |
while [ $COUNTER -lt 10 ]; do | |
echo FIX ALL THE THINGS run - $COUNTER | |
echo Clear Cache | |
drush cc all | |
echo Refvert all the features | |
drush fra -y | |
let COUNTER=COUNTER+1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment