better profile, local path should override system

This commit is contained in:
Haak Saxberg 2014-03-19 10:52:40 -07:00
parent ee0873e279
commit b924e14f58
2 changed files with 2 additions and 2 deletions

View file

@ -1,3 +1,3 @@
if [ -f ~/.bashrc ]; then if [ -L ~/.bashrc ] || [ -f ~/.bashrc ]; then
source ~/.bashrc; source ~/.bashrc;
fi fi

View file

@ -83,7 +83,7 @@ alias h=history
alias kp="ps auxwww" alias kp="ps auxwww"
# general path munging # general path munging
PATH=${PATH}:~/bin PATH=~/local/bin:${PATH}
PATH=${PATH}:/usr/local/bin PATH=${PATH}:/usr/local/bin
if [ -f /opt/local/etc/bash_completion.d/git ]; then if [ -f /opt/local/etc/bash_completion.d/git ]; then