1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2026-02-11 05:05:19 +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 fi
if [[ -d "$DOTFILES/bash_completion.d" ]]; then 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 if [[ -r "$i" ]]; then
. "$i" . "$i"
fi fi