From be7a994881252c7e55647d370036b0249a4fee33 Mon Sep 17 00:00:00 2001 From: m2Giles <69128853+m2Giles@users.noreply.github.com> Date: Fri, 2 Feb 2024 09:29:40 -0800 Subject: [PATCH] fix: errant period --- toolboxes/bluefin-cli/files/etc/profile.d/bash_completion.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toolboxes/bluefin-cli/files/etc/profile.d/bash_completion.sh b/toolboxes/bluefin-cli/files/etc/profile.d/bash_completion.sh index c899b24..5621df4 100644 --- a/toolboxes/bluefin-cli/files/etc/profile.d/bash_completion.sh +++ b/toolboxes/bluefin-cli/files/etc/profile.d/bash_completion.sh @@ -8,7 +8,7 @@ if [ "x${BASH_VERSION-}" != x -a "x${PS1-}" != x -a "x${BASH_COMPLETION_VERSINFO [ -r "${XDG_CONFIG_HOME:-$HOME/.config}/bash_completion" ] && . "${XDG_CONFIG_HOME:-$HOME/.config}/bash_completion" if shopt -q progcomp && [ -r /usr/share/bash-completion/bash_completion ]; then - # Source completion code + # Source completion code. . /usr/share/bash-completion/bash_completion fi if shopt -q progcomp && [ -r /usr/local/share/bash-completion/bash_completion ]; then @@ -16,7 +16,7 @@ if [ "x${BASH_VERSION-}" != x -a "x${PS1-}" != x -a "x${BASH_COMPLETION_VERSINFO . /usr/local/share/bash-completion/bash_completion fi if test -L /home/linuxbrew/.linuxbrew/etc/bash_completion.d/brew; then - /home/linuxbrew/.linuxbrew/bin/brew completions link. + /home/linuxbrew/.linuxbrew/bin/brew completions link fi if test -d /home/linuxbrew/.linuxbrew/etc/bash_completion.d; then for rc in /home/linuxbrew/.linuxbrew/etc/bash_completion.d/*; do