.bash_profile: Fix typo

Only source `~/.extra` once.
This commit is contained in:
Mathias Bynens
2012-08-07 07:36:57 +02:00
parent ab64db6580
commit 3a7ae53e18
+1 -1
View File
@@ -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 dont 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