From: W. Trevor King Date: Wed, 30 Nov 2011 14:00:51 +0000 (-0500) Subject: Place .bashrc invokation after PATH tweaking in .bash_profile so .bashrc has the... X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5e0203d97b37c2a91bd8e6d6e3bf4bda2cf55507;p=dotfiles-public.git Place .bashrc invokation after PATH tweaking in .bash_profile so .bashrc has the full PATH. --- diff --git a/src/.bash_profile b/src/.bash_profile index e2bb5a6..6fbb822 100644 --- a/src/.bash_profile +++ b/src/.bash_profile @@ -1,14 +1,14 @@ # This file is sourced by bash for login shells. -# The following line runs your .bashrc and is recommended by the bash -# info pages. -[[ -f ~/.bashrc ]] && . ~/.bashrc - # set PATH so it includes user's private bin if it exists if [ -d ~/bin ]; then PATH=~/bin:"${PATH}" fi +# The following line runs your .bashrc and is recommended by the bash +# info pages. +[[ -f ~/.bashrc ]] && . ~/.bashrc + #exec screen -R # automatically attach to first detached session if it exists # print my calendar if I've configured it