Use $OSTYPE instead of uname to speed things up

The $OSTYPE variable is set at ZSH compile time and can be safely used
to determine the OS of the system. e.g. darwin (os x)
This commit is contained in:
Christian Höltje
2014-04-23 10:13:26 -04:00
committed by Christian Höltje
parent 207b6a1e33
commit 63bae2aba9
7 changed files with 7 additions and 7 deletions

View File

@@ -17,7 +17,7 @@ if [[ $('uname') == 'Linux' ]]; then
fi
done
elif [[ $('uname') == 'Darwin' ]]; then
elif [[ "$OSTYPE" = darwin* ]]; then
local _sublime_darwin_paths > /dev/null 2>&1
_sublime_darwin_paths=(
"/usr/local/bin/subl"