From 964df6e8dc3a471d9e9a33fc255aca62897baae3 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 16 Nov 2024 03:23:19 +0100 Subject: [PATCH] fixes --- shell/shell.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/shell/shell.sh b/shell/shell.sh index d8df42b..b50964e 100644 --- a/shell/shell.sh +++ b/shell/shell.sh @@ -34,7 +34,7 @@ shell_configure() { case "${SH}" in "bash") # completion - file="/usr/share/bash-completion/bash_completion" + local file="/usr/share/bash-completion/bash_completion" if [ -f "${file}" ]; then . "${file}" fi @@ -43,8 +43,7 @@ shell_configure() { HISTSIZE=-1 HISTTIMEFORMAT="%Y%m%d %H%M%S " ;; - *) - ;; + *) ;; esac } shell_configure