Fixed typo on the PATH setup line

This commit is contained in:
Ian Chesal 2012-03-07 23:27:23 -05:00
commit f552a93a80

View file

@ -6,15 +6,15 @@
#
SUBL=`which subl`
if [[ $SUBL == 'subl not found' ]] ; then
if [[ `uname` == 'Darwin' ]] ; then
if [[ `uname` == 'Darwin' ]] ; then
if [ -d /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin ] ; then
export PATH=/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin:${PATH}
fi
if [ -d ~/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin ] ; then
export PATH=~/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin;${PATH}
export PATH=~/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin:${PATH}
fi
fi
fi
alias st='subl'
alias stzsh='subl ~/.zshrc'
alias stzsh='subl ~/.zshrc'