aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-08-20 13:54:57 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-08-20 13:54:57 +1200
commit866ef5c3794764b089efdcfae1a753e294978663 (patch)
treeb0a2dba4364b0f31fda5ddb8a94ca5feaaded8f1 /bash/bashrc
parentTurn off control character echo with stty (diff)
downloaddotfiles-866ef5c3794764b089efdcfae1a753e294978663.tar.gz
dotfiles-866ef5c3794764b089efdcfae1a753e294978663.zip
More conservative expansion for dotfile paths
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 9bb6d8b3..33155b82 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -33,7 +33,7 @@ fi
# Load any supplementary scripts
if [[ -d $HOME/.bashrc.d ]]; then
- for file in "$HOME/.bashrc.d"/*; do
+ for file in "$HOME"/.bashrc.d/*; do
source "$file"
done
fi