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;
fi