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,12 +6,12 @@
# #
SUBL=`which subl` SUBL=`which subl`
if [[ $SUBL == 'subl not found' ]] ; then 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 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
if [ -d ~/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin ] ; then 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 fi
fi fi