Clean up path additions in env.darwin
This commit is contained in:
parent
9ea891311c
commit
47ff60e9a5
1 changed files with 2 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue