From 9a66d4531e7d0d015b38be0b38f1c379a45fd03f Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 11 Mar 2020 02:26:33 +0300 Subject: [PATCH] .shellrc: Check if file `bash_completion` exists --- .shellrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.shellrc b/.shellrc index b1c2da1..10b3e9b 100644 --- a/.shellrc +++ b/.shellrc @@ -74,7 +74,7 @@ if test -n "$BASH_VERSION"; then has_completion() { return 0; } if [ -z "$BASH_COMPLETION_COMPAT_DIR" ]; then if [ "$SHELL" = /bin/bash ]; then - if [ -d /usr/share/bash-completion ]; then + if [ -d /usr/share/bash-completion -a -f /usr/share/bash-completion/bash_completion ]; then . /usr/share/bash-completion/bash_completion has_completion() { [ -r /usr/share/bash-completion/completions/$1 ]; } elif [ -f /etc/bash_completion ]; then -- 2.39.2