From 02bf7da4308f07e362864c30be21ec59f9ad9972 Mon Sep 17 00:00:00 2001 From: TheSast <27977196+TheSast@users.noreply.github.com> Date: Sun, 30 Apr 2023 12:33:41 +0200 Subject: [PATCH] =?UTF-8?q?[=E2=86=91]=20fixed=20tpm=20not=20checking=20so?= =?UTF-8?q?urced=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/helpers/plugin_functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/helpers/plugin_functions.sh b/scripts/helpers/plugin_functions.sh index f33d215..02ade8d 100644 --- a/scripts/helpers/plugin_functions.sh +++ b/scripts/helpers/plugin_functions.sh @@ -38,7 +38,7 @@ _tmux_conf_contents() { if [ "$1" == "full" ]; then # also output content from sourced files local file for file in $(_sourced_files); do - cat $(_manual_expansion "$file") 2>/dev/null + cat "$(eval echo "$(_manual_expansion "$file")")" 2>/dev/null done fi }