[↑] fixed tpm not checking sourced files

This commit is contained in:
TheSast 2023-04-30 12:33:41 +02:00
parent 99469c4a9b
commit 02bf7da430
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

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