From 56e72e50ea2b2dfd82f610817afd228a8461b22c Mon Sep 17 00:00:00 2001 From: Ikuo Degawa Date: Sun, 17 Jan 2021 20:38:31 +0900 Subject: [PATCH] Fix --- .bashrc | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.bashrc b/.bashrc index b1b2508..2e1e0b4 100644 --- a/.bashrc +++ b/.bashrc @@ -1,3 +1,4 @@ +# shellcheck disable=SC2148 # vim: filetype=sh : if [ "${BASH_VERSINFO[0]}" -le 3 ]; then @@ -13,11 +14,9 @@ fi ## Auto complete complete -C aws_completer aws -if [ "${BASH_VERSINFO[0]}" -ge 4 ]; then - BASH_COMPLETION="/usr/local/etc/profile.d/bash_completion.sh" - # shellcheck disable=SC1090 - [[ -r "$BASH_COMPLETION" ]] && . "$BASH_COMPLETION" -fi +BASH_COMPLETION="/usr/local/etc/profile.d/bash_completion.sh" +# shellcheck disable=SC1090 +[[ -r "$BASH_COMPLETION" ]] && . "$BASH_COMPLETION" ## Language Specific configs export GOPATH=$HOME/.go