[↑] fixed tpm not checking sourced files
This commit is contained in:
parent
99469c4a9b
commit
02bf7da430
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ _tmux_conf_contents() {
|
||||||
if [ "$1" == "full" ]; then # also output content from sourced files
|
if [ "$1" == "full" ]; then # also output content from sourced files
|
||||||
local file
|
local file
|
||||||
for file in $(_sourced_files); do
|
for file in $(_sourced_files); do
|
||||||
cat $(_manual_expansion "$file") 2>/dev/null
|
cat "$(eval echo "$(_manual_expansion "$file")")" 2>/dev/null
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue