From 076c483a7c80fc63e1fb48639c0ca306a8b876b5 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Thu, 29 Aug 2013 14:57:07 -0700 Subject: [PATCH] Fix env.darwin syntax --- env.darwin | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/env.darwin b/env.darwin index 8871ec3..ec3042e 100644 --- a/env.darwin +++ b/env.darwin @@ -1,5 +1,7 @@ # vim: set ft=zsh: # Eryn Wells -[[ -d /usr/local/share/python3 ]] - && path+=(/usr/local/share/python3) +[[ -d "/usr/local/share/python3" ]] \ + && path+=("/usr/local/share/python3") + +export PATH