Skip to content

Instantly share code, notes, and snippets.

@dmichael
Created August 21, 2009 15:04
Show Gist options
  • Save dmichael/172082 to your computer and use it in GitHub Desktop.
Save dmichael/172082 to your computer and use it in GitHub Desktop.
#!/bin/sh
LC_CTYPE=en_US.UTF-8
SVN=`which svn`
echo Changing to Bundles directory...
mkdir -p /Library/Application\ Support/TextMate/Bundles
cd /Library/Application\ Support/TextMate/Bundles
if [ -d /Library/Application\ Support/TextMate/Bundles/ Erlang.tmbundle ]; then
echo Erlang bundle already exists - updating...
$SVN up Erlang.tmbundle
else
echo Checking out Erlang bundle...
$SVN --username anon --password anon co http://svn.textmate.org/trunk/Bundles/Erlang.tmbundle/
fi
echo Reloading bundles in TextMate...
osascript -e 'tell app "TextMate" to reload bundles'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment