From c4cc3eb63bf120cf81e25cb97780fd3e4a91ebff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Fri, 25 Jan 2013 00:19:23 +0200 Subject: [PATCH] Brown paper bag fix for the previous commit. --- bash_completion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash_completion b/bash_completion index 952f5662..9412580b 100644 --- a/bash_completion +++ b/bash_completion @@ -1920,7 +1920,7 @@ _completion_loader() { local compfile=./completions [[ $BASH_SOURCE == */* ]] && compfile="${BASH_SOURCE%/*}/completions" - compfile+="${1##*/}" + compfile+="/${1##*/}" # Avoid trying to source dirs; https://bugzilla.redhat.com/903540 [[ -f "$compfile" ]] && . "$compfile" &>/dev/null && return 124