aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'bash/bashrc')
-rw-r--r--bash/bashrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/bash/bashrc b/bash/bashrc
index 7924a7e1..45539977 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -32,9 +32,9 @@ if [[ -r /etc/bash_completion ]]; then
fi
# Load any supplementary scripts
-if [[ -d "$HOME/.bashrc.d" ]]; then
- for file in $HOME/.bashrc.d/*; do
- source $file
+if [[ -d "${HOME}/.bashrc.d" ]]; then
+ for file in "${HOME}/.bashrc.d"/*; do
+ source "$file"
done
fi