From 10ad8282e2c681665d02f4c263ab478a54ea99ba Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Mon, 11 Nov 2019 11:43:53 +0100 Subject: [PATCH] Fix glob for bash completions --- dotfiles/.config/bash/profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/.config/bash/profile b/dotfiles/.config/bash/profile index c203f37..923a4dd 100644 --- a/dotfiles/.config/bash/profile +++ b/dotfiles/.config/bash/profile @@ -354,7 +354,7 @@ _update_colors "${BACKGROUND:-dark}" # Enable available completion helpers 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 source "$completion" done