From 195b185f6e879b6366055905b732742ffa3c853a Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Tue, 12 Nov 2024 07:58:17 +0100 Subject: [PATCH] completion --- bash/bash/completion.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bash/bash/completion.sh b/bash/bash/completion.sh index 748a2b9..21e8a21 100644 --- a/bash/bash/completion.sh +++ b/bash/bash/completion.sh @@ -1,5 +1,5 @@ -file='/usr/share/bash-completion/bash_completion' +file="/usr/share/bash-completion/bash_completion" -if [ -f "${file}" ] ; then - source "${file}" +if [ -f "${file}" ]; then + . "${file}" fi