From 8a103c91545ece00a14ac98037228276d5283d5b Mon Sep 17 00:00:00 2001 From: accel Date: Mon, 20 Dec 2021 18:03:45 +0300 Subject: [PATCH] fix broken source --- global.funcs.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.funcs.zsh b/global.funcs.zsh index e989bcf..5c387a5 100644 --- a/global.funcs.zsh +++ b/global.funcs.zsh @@ -100,7 +100,7 @@ function zconfig_checkload() if [[ ! ${zconfig_loaded[(r)${1}]} ]] then zbootstrap_message zbootstrap "sourcing config '$1'" - source -- $1 2>&1 | zbootstrap_message zbootstrap # >> "${HOME}/.log/z_zbootstrap.log" + . -- $1 2>&1 >(zbootstrap_message zbootstrap) # >> "${HOME}/.log/z_zbootstrap.log" zconfig_loaded+=("$1") zbootstrap_message zbootstrap "end sourcing config '$1'" else