From 47ff60e9a53c032116637d877840d94168540c4d Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Wed, 4 Sep 2013 20:30:03 -0700 Subject: [PATCH] Clean up path additions in env.darwin --- env.darwin | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/env.darwin b/env.darwin index 4492547..48dbf93 100644 --- a/env.darwin +++ b/env.darwin @@ -1,10 +1,8 @@ # vim: set ft=zsh: # Eryn Wells -[[ -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