1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2026-02-06 09:03:23 +00:00

Actually load additional bash completion files

This commit is contained in:
Holger Just 2013-10-14 17:15:35 +02:00
parent 9604aaadd2
commit d3cf76fded

View File

@ -71,7 +71,7 @@ if [[ $- =~ 'i' ]]; then
fi
if [[ -d "$DOTFILES/bash_completion.d" ]]; then
for i in "$DOTFILES/bash_completion.d/*"; do
for i in $DOTFILES/bash_completion.d/*; do
if [[ -r "$i" ]]; then
. "$i"
fi