Clean up path additions in env.darwin

This commit is contained in:
Eryn Wells 2013-09-04 20:30:03 -07:00
parent 9ea891311c
commit 47ff60e9a5

View file

@ -1,10 +1,8 @@
# vim: set ft=zsh:
# Eryn Wells <eryn@erynwells.me>
[[ -d "$HOME/Library/Python/2.7/bin" ]]
&& path=("$HOME/Library/Python/2.7/bin" $path)
[[ -d "/usr/local/share/python3" ]] \
&& path+=("/usr/local/share/python3")
[[ -d "$HOME/Library/Python/2.7/bin" ]] && path=("$HOME/Library/Python/2.7/bin" $path)
[[ -d "/usr/local/share/python3" ]] && path+=("/usr/local/share/python3")
export PATH