Added missing colon and space while loading custom files

Looks like I missed this during my review, @NoahGorny
This commit is contained in:
Nils Winkler
2020-07-07 13:17:17 +02:00
parent 2814946d86
commit e0ee6bd32f

View File

@@ -106,7 +106,7 @@ do
if [ -e "${_bash_it_config_file}" ]; then if [ -e "${_bash_it_config_file}" ]; then
filename=$(basename "${_bash_it_config_file}") filename=$(basename "${_bash_it_config_file}")
filename=${filename%*.bash} filename=${filename%*.bash}
BASH_IT_LOG_PREFIX="custom: $filename" BASH_IT_LOG_PREFIX="custom: $filename: "
_log_debug "Loading custom file..." _log_debug "Loading custom file..."
# shellcheck disable=SC1090 # shellcheck disable=SC1090
source "$_bash_it_config_file" source "$_bash_it_config_file"