From ee853670a11906029ba5df1ef9402cdbb65f6370 Mon Sep 17 00:00:00 2001 From: Koichi Murase Date: Sat, 19 Feb 2022 17:16:53 +0900 Subject: [PATCH] bash_it: suppress a false error by shellcheck --- bash_it.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/bash_it.sh b/bash_it.sh index a1e8cdfd1c..00a1bceadb 100755 --- a/bash_it.sh +++ b/bash_it.sh @@ -38,6 +38,7 @@ done # "_bash_it_main_file_type" param is empty so that files get sourced in glob order for _bash_it_main_file_type in "" "aliases" "plugins" "completion"; do BASH_IT_LOG_PREFIX="core: reloader: " + # shellcheck disable=SC2140 source "${BASH_IT}/scripts/reloader.bash" ${_bash_it_main_file_type:+"skip" "$_bash_it_main_file_type"} BASH_IT_LOG_PREFIX="core: main: " done