aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'bash/bashrc')
-rw-r--r--bash/bashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bashrc b/bash/bashrc
index abfc6267..8c74c136 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -80,7 +80,7 @@ fi
# Load any supplementary scripts
if [[ -d $HOME/.bashrc.d ]]; then
for config in "$HOME"/.bashrc.d/*; do
- [[ -f $config ]] && source "$config"
+ [[ -r $config ]] && source "$config"
done
fi
unset -v config