From 5e0203d97b37c2a91bd8e6d6e3bf4bda2cf55507 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 30 Nov 2011 09:00:51 -0500 Subject: [PATCH] Place .bashrc invokation after PATH tweaking in .bash_profile so .bashrc has the full PATH. --- src/.bash_profile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 -- 2.26.2