aboutsummaryrefslogtreecommitdiffstats
path: root/.bash_profile
diff options
context:
space:
mode:
authorMathias Bynens <mathias@qiwi.be>2012-08-07 07:36:57 +0200
committerMathias Bynens <mathias@qiwi.be>2012-08-07 07:36:57 +0200
commit3a7ae53e188f16cd51dbae6056439587ce56174e (patch)
treec6304c674627af75eb8672d11f7b45a88ef1fc46 /.bash_profile
parentab64db65806920e82dbab5f19528ebe071bafaef (diff)
downloaddotfiles-3a7ae53e188f16cd51dbae6056439587ce56174e.tar.gz
dotfiles-3a7ae53e188f16cd51dbae6056439587ce56174e.tar.bz2
dotfiles-3a7ae53e188f16cd51dbae6056439587ce56174e.zip
.bash_profile: Fix typo
Only source `~/.extra` once.
Diffstat (limited to '.bash_profile')
-rw-r--r--.bash_profile2
1 files changed, 1 insertions, 1 deletions
diff --git a/.bash_profile b/.bash_profile
index cff9c92..a14416a 100644
--- a/.bash_profile
+++ b/.bash_profile
@@ -1,7 +1,7 @@
# Load the shell dotfiles, and then some:
# * ~/.path can be used to set or extend `$PATH`.
# * ~/.extra can be used for settings you don’t want to commit.
-for file in ~/.{path,extra,bash_prompt,exports,aliases,functions,extra}; do
+for file in ~/.{path,bash_prompt,exports,aliases,functions,extra}; do
[ -r "$file" ] && source "$file"
done
unset file