Add loading ~/opt/bash/env to keep private settings

This is for things like API keys or other settings that I do not want to
keep on github
Buddy Sandidge 11 years ago
parent a6a8901f19
commit 4e76d70773

@ -43,8 +43,8 @@ _add-path /Library/Frameworks/Python.framework/Versions/2.7/bin
_add-path ~/.rvm/bin
_add-path ~/opt/bin
_add-path /usr/local/mysql/bin
_add-path /opt/local/bin
_add-path /opt/vertica/bin
_add-path /opt/local/bin
_add-path /opt/local/sbin
_add-path /opt/bin
_add-path ~/bin

@ -25,6 +25,10 @@ if [ -f ~/.bash/prompt ]; then
source ~/.bash/prompt
fi
if [ -f ~/opt/bash/env ]; then
source ~/opt/bash/env
fi
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
@ -35,4 +39,3 @@ fi
if [ -f /opt/local/etc/profile.d/bash_completion.sh ]; then
source /opt/local/etc/profile.d/bash_completion.sh
fi

Loading…
Cancel
Save