mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
Fixed typo on the PATH setup line
This commit is contained in:
parent
f19f41893e
commit
f552a93a80
1 changed files with 3 additions and 3 deletions
|
|
@ -6,12 +6,12 @@
|
|||
#
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue