Skip to content

Instantly share code, notes, and snippets.

@kinopyo
Created June 26, 2011 07:02
Show Gist options
  • Save kinopyo/1047342 to your computer and use it in GitHub Desktop.
Save kinopyo/1047342 to your computer and use it in GitHub Desktop.
Shell script to update all your textmate bundles
#!/usr/bin/env bash
mkdir -p /Library/Application\ Support/TextMate/
sudo chown -R $(whoami) /Library/Application\ Support/TextMate
cd /Library/Application\ Support/TextMate/
if [[ -d Bundles/.svn ]] ; then
cd Bundles && svn up
else
if [[ -d Bundles ]] ; then
mv Bundles Bundles.old
fi
svn co http://svn.textmate.org/trunk/Bundles
fi
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment