commit da01a9eab9b8ec9f082003a2e9699181d85ecedc
parent fca2ba1a30a9af56a0ca3e07229ffd0cfcae6371
Author: Jan Pobříslo <ccx@te2000.cz>
Date: Thu, 25 Nov 2021 23:09:52 +0000
Fix search for container_template dir
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/zsh-functions/confz_containers_init b/zsh-functions/confz_containers_init
@@ -404,7 +404,7 @@ confz_container_service_xsession_check() {
() {
local f
for f in $^fpath/confz_containers_init*(N); do
- if [[ -d $f:h/container_template ]]; then
+ if [[ -d $f:A:h:h/container_template ]]; then
typeset -g container_template_dir=$f:h/container_template
break
fi