fix sourcing line

This commit is contained in:
Matthias Kretschmann 2016-05-08 19:06:47 +02:00
parent 8ed34c9293
commit 0ea1b10d90
Signed by: m
GPG Key ID: BD3C1F3EDD7831FC
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
if [ -n "$BASH_VERSION" ]; then
# source all the things
for file in ~/.{bash_aliases,bash_prompt,bashrc,bash_prompt}; do
for file in ~/.{bashrc,bash_prompt,bash_aliases}; do
[ -r "$file" ] && [ -f "$file" ] && source "$file"
done;
unset file;