Last active
October 28, 2015 00:53
-
-
Save nitriques/fc72b8d521e79bb34108 to your computer and use it in GitHub Desktop.
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 | |
git clone [email protected]:symphonycms/symphony-2.git bundle | |
cd bundle | |
git checkout bundle | |
cd extensions | |
pwd | |
git submodule init | |
git submodule update | |
echo "" | |
for D in *; do | |
if [ -d "${D}" ]; then | |
cd "${D}" | |
echo "" | |
echo "${D}" | |
pwd | |
git pull origin master | |
cd .. | |
fi | |
done | |
cd ../.. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment