From ed9d71ebedfc9dfccda54163bb81d5f65aa6a5b5 Mon Sep 17 00:00:00 2001 From: John D Pell Date: Sun, 20 Feb 2022 11:03:33 -0800 Subject: [PATCH] Revert "bash_it: source reloader.bash without arguments for the default enabling" This reverts commit e05fa477d70a793ec6dd23358ecc8a16ad45126f. This reverts commit ee853670a11906029ba5df1ef9402cdbb65f6370. --- bash_it.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bash_it.sh b/bash_it.sh index 00a1bceadb..78d19b8761 100755 --- a/bash_it.sh +++ b/bash_it.sh @@ -38,8 +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"} + source "${BASH_IT}/scripts/reloader.bash" "${_bash_it_main_file_type:+skip}" "$_bash_it_main_file_type" BASH_IT_LOG_PREFIX="core: main: " done