From: Mark Wooding Date: Fri, 23 Oct 2009 15:45:07 +0000 (+0100) Subject: dot/bash_profile: Read bashrc if it's been lost. X-Git-Url: https://git.distorted.org.uk/~mdw/profile/commitdiff_plain/7362aa2c2b9eb5a193bcd968d0eb59e78cc74501 dot/bash_profile: Read bashrc if it's been lost. Do this even if the profile has already been read. Nautilus is crazed in some unhelpful way. --- diff --git a/dot/bash_profile b/dot/bash_profile index ffea97f..e45fe41 100644 --- a/dot/bash_profile +++ b/dot/bash_profile @@ -232,11 +232,11 @@ fi [ -f "$HOME/.profile-local" ] && . "$HOME/.profile-local" +fi + # --- Now, if my .bashrc hasn't been run yet, run it --- # # Oh, don't do that if we don't have a terminal. [ -z "$__mdw_bashrc" ] && [ -t 0 ] && \ [ -r $HOME/.bashrc ] && . $HOME/.bashrc - -fi