Skip to content

Instantly share code, notes, and snippets.

@thraxil
Last active August 29, 2015 14:01
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 thraxil/0016e65a74b4bec50c8e to your computer and use it in GitHub Desktop.
Save thraxil/0016e65a74b4bec50c8e to your computer and use it in GitHub Desktop.
#!/bin/bash
for app in `echo */`; do
echo $app
cd $app
git pull
perl -pi -e 's/Django==1.6.4/Django==1.6.5/' requirements.txt
make && git commit -a -m "Django -> 1.6.5" && git push
cd ..
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment