1
0

Source local bashrc at the end

This commit is contained in:
Noah 2016-01-12 14:21:04 -08:00
parent 9a02de694e
commit de01fe2669

View File

@ -8,11 +8,6 @@ if [ -f /etc/bashrc ]; then
. /etc/bashrc . /etc/bashrc
fi fi
# Source local system-specific config.
if [ -f ~/.localbashrc ]; then
. ~/.localbashrc
fi
platform="unknown" platform="unknown"
unamestr=`uname` unamestr=`uname`
if [[ "$unamestr" == "Linux" ]]; then if [[ "$unamestr" == "Linux" ]]; then
@ -191,3 +186,8 @@ if [ -e ".xterm256" ]; then
export TERMCAP export TERMCAP
fi fi
fi fi
# Source local system-specific config.
if [ -f ~/.localbashrc ]; then
. ~/.localbashrc
fi