Skip to content

Instantly share code, notes, and snippets.

@mikebell
Created October 30, 2013 09:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikebell/7229433 to your computer and use it in GitHub Desktop.
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.
#!/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