diff options
author | user996015 <zach.borboa@opensgi.com> | 2012-06-20 09:39:51 -0700 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-06-21 07:33:05 +0200 |
commit | df434eff54d584c4d4c1cbda94fa169bb6b19b74 (patch) | |
tree | f45b7808260b06d1b5479aee2f15f20106312c0e /.bash_profile | |
parent | 0c15ee66751825f5ca066c810b701dd09ed4438d (diff) | |
download | dotfiles-df434eff54d584c4d4c1cbda94fa169bb6b19b74.tar.gz dotfiles-df434eff54d584c4d4c1cbda94fa169bb6b19b74.tar.bz2 dotfiles-df434eff54d584c4d4c1cbda94fa169bb6b19b74.zip |
.bash_profile: Load `.extra` last, allowing it to override any previous settings
Diffstat (limited to '.bash_profile')
-rw-r--r-- | .bash_profile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.bash_profile b/.bash_profile index ca08bcb..cfb020b 100644 --- a/.bash_profile +++ b/.bash_profile @@ -1,6 +1,6 @@ -# Load ~/.extra, ~/.bash_prompt, ~/.exports, ~/.aliases and ~/.functions +# Load ~/.bash_prompt, ~/.exports, ~/.aliases, ~/.functions and ~/.extra # ~/.extra can be used for settings you don’t want to commit -for file in ~/.{extra,bash_prompt,exports,aliases,functions}; do +for file in ~/.{bash_prompt,exports,aliases,functions,extra}; do [ -r "$file" ] && source "$file" done unset file |