Last active
August 29, 2015 13:57
-
-
Save dbarbar/9400191 to your computer and use it in GitHub Desktop.
Set up springboard code base for development work.
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 | |
rm -rf src | |
rm -rf build | |
git clone [email protected]:JacksonRiver/Springboard-Build.git build | |
drush make build/springboard-mtsb.make src | |
cp -f settings.php src/sites/default | |
cd src/sites/all/modules | |
rm -rf springboard | |
git clone [email protected]:JacksonRiver/springboard_modules.git springboard | |
cd springboard | |
git checkout 7.x-4.x | |
cd ../../themes | |
rm -rf springboard_themes | |
git clone [email protected]:JacksonRiver/springboard-themes.git springboard_themes | |
cd springboard_themes | |
git checkout 7.x-4.x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment