Selaa lähdekoodia

append to PATH not prepend

* prepending properly would need to be wrapped in a if dir in PATH check to protect order in subshells and it's easier to just append
Kyle P Davis 10 vuotta sitten
vanhempi
commit
dddf7ca97d
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      .profile

+ 2 - 2
.profile

@@ -1,7 +1,7 @@
-export PATH="$HOME/bin:$PATH"
+export PATH="$PATH:$HOME/bin"
 
 # Homebrew
-export PATH="$HOME/homebrew/bin:$PATH"
+export PATH="$PATH:$HOME/homebrew/bin"
 export PYTHONPATH="$(brew --prefix)/lib/python2.7/site-packages/"  # also facilitates:  easy_install -d "$PYTHONPATH" awesome_pkg
 
 # Custom shell aliases