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