Fix glob for bash completions
This commit is contained in:
parent
b8c257ff9b
commit
10ad8282e2
1 changed files with 1 additions and 1 deletions
|
@ -354,7 +354,7 @@ _update_colors "${BACKGROUND:-dark}"
|
||||||
|
|
||||||
# Enable available completion helpers
|
# Enable available completion helpers
|
||||||
if [ -d "$LOCAL_PREFIX/etc/bash_completion.d" ]; then
|
if [ -d "$LOCAL_PREFIX/etc/bash_completion.d" ]; then
|
||||||
for completion in "$LOCAL_PREFIX/etc/bash_completion.d/*"; do
|
for completion in "$LOCAL_PREFIX/etc/bash_completion.d"/*; do
|
||||||
# shellcheck disable=SC1090
|
# shellcheck disable=SC1090
|
||||||
source "$completion"
|
source "$completion"
|
||||||
done
|
done
|
||||||
|
|
Loading…
Add table
Reference in a new issue