aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'bash/bashrc')
-rw-r--r--bash/bashrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/bash/bashrc b/bash/bashrc
index a0f6448a..f2d32558 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -86,7 +86,9 @@ fi
# Load any supplementary scripts
if [[ -d $HOME/.bashrc.d ]] ; then
for bashrc in "$HOME"/.bashrc.d/*.bash ; do
- source "$bashrc"
+ if [[ -e $bashrc ]] ; then
+ source "$bashrc"
+ fi
done
unset -v bashrc
fi