aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-08-19 18:30:04 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-08-19 18:30:04 +1200
commit74c23900cdf41e6fc62af117818867858abd0288 (patch)
tree63743cf6c0ffb78b591dfbf309892221610257bc /bash/bashrc
parentMove --color option for grep to end of alias (diff)
downloaddotfiles-74c23900cdf41e6fc62af117818867858abd0288.tar.gz
dotfiles-74c23900cdf41e6fc62af117818867858abd0288.zip
Remove unnecessary variable bracing in .bashrc
Diffstat (limited to 'bash/bashrc')
-rw-r--r--bash/bashrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/bash/bashrc b/bash/bashrc
index 45539977..7952358c 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -32,8 +32,8 @@ if [[ -r /etc/bash_completion ]]; then
fi
# Load any supplementary scripts
-if [[ -d "${HOME}/.bashrc.d" ]]; then
- for file in "${HOME}/.bashrc.d"/*; do
+if [[ -d "$HOME/.bashrc.d" ]]; then
+ for file in "$HOME/.bashrc.d"/*; do
source "$file"
done
fi