From e0ee6bd32f54974a81a17094fb25bad2c26cc3fe Mon Sep 17 00:00:00 2001 From: Nils Winkler Date: Tue, 7 Jul 2020 13:17:17 +0200 Subject: [PATCH] Added missing colon and space while loading custom files Looks like I missed this during my review, @NoahGorny --- bash_it.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash_it.sh b/bash_it.sh index 8a277bed..310aae42 100755 --- a/bash_it.sh +++ b/bash_it.sh @@ -106,7 +106,7 @@ do if [ -e "${_bash_it_config_file}" ]; then filename=$(basename "${_bash_it_config_file}") filename=${filename%*.bash} - BASH_IT_LOG_PREFIX="custom: $filename" + BASH_IT_LOG_PREFIX="custom: $filename: " _log_debug "Loading custom file..." # shellcheck disable=SC1090 source "$_bash_it_config_file"