Fix $OSTYPE variable

Bash variables are case sensitive.
pull/388/head
Tiago Bastos 2014-12-26 13:03:23 -03:00
parent 62443ced3d
commit 1d7336766c
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ MVIM=$(command -v mvim)
[[ -n $VIM ]] && alias v=$VIM
case $ostype in
case $OSTYPE in
darwin*)
[[ -n $MVIM ]] && alias mvim="mvim --remote-tab"
;;