Created
December 10, 2014 15:32
-
-
Save dbarbar/75d874ebb65031b93f52 to your computer and use it in GitHub Desktop.
update springboard
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 | |
sudo mv docroot/sites/default . | |
mv docroot/profiles/sbsetup . | |
mv docroot/sites/all/modules/springboard . | |
mv docroot/sites/all/themes/springboard_themes . | |
sudo rm -rf docroot | |
mkdir docroot | |
mv *.tar.gz docroot/ | |
cd docroot | |
tar zxvf *.tar.gz | |
rm -rf sites/default | |
rm -rf profiles/sbsetup | |
rm -rf sites/all/modules/springboard | |
rm -rf sites/all/themes/springboard_themes | |
cd .. | |
sudo mv default docroot/sites | |
mv sbsetup docroot/profiles | |
mv springboard docroot/sites/all/modules | |
mv springboard_themes docroot/sites/all/themes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment