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,15 +6,15 @@
|
||||||
#
|
#
|
||||||
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
|
||||||
|
|
||||||
alias st='subl'
|
alias st='subl'
|
||||||
alias stzsh='subl ~/.zshrc'
|
alias stzsh='subl ~/.zshrc'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue