Skip to content

Instantly share code, notes, and snippets.

@nitriques
Last active October 28, 2015 00:53
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 nitriques/fc72b8d521e79bb34108 to your computer and use it in GitHub Desktop.
Save nitriques/fc72b8d521e79bb34108 to your computer and use it in GitHub Desktop.
#!/bin/bash
git clone git@github.com: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