#!/usr/local/bin/bash
#
# FILE  : dotfiles.core/home/.bash_profile
# TARGET: ~/.bash_profile
# AUTHOR: tgwil
#
# This is run by bash on startup.
# It loads each .bashrc.X file if it exists.


########################################################################
## PATH
########################################################################
# ~/bin is used for personal scripts and other executables used only
# by this user.
PATH=$PATH:$HOME/bin


########################################################################
## .bashrc (core)
########################################################################
if [[ $- == *i* && -f ~/.bashrc ]]; then
	. ~/.bashrc
fi


########################################################################
## .bashrc.personal
########################################################################
if [[ $- == *i* && -f ~/.bashrc.personal ]]; then
	  . ~/.bashrc.personal
fi