Revert "bash_it: source reloader.bash without arguments for the default enabling"

This reverts commit e05fa477d7.
This reverts commit ee853670a1.
pull/1917/head
John D Pell 2022-02-20 11:03:33 -08:00 committed by John D Pell
parent 8a6debd9d2
commit c09c050325
1 changed files with 1 additions and 2 deletions

View File

@ -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