Missing a \\.

This commit is contained in:
niten 2023-10-07 09:42:17 -07:00
parent 28af343752
commit ec7e11c0f7

View File

@ -59,7 +59,7 @@ let
hostToFqdn = host:
if isNotNull (builtins.match "[^.]+\\.$" host) then
host
else if isNotNull (builtins.match "[^.]+\\[^.]+$" host) then
else if isNotNull (builtins.match "[^.]+\\.[^.]+$" host) then
"${host}."
else if (hasAttr host zone.hosts) then
"${host}.${domain}."