scripts/check_site.lua: show type of incorrect values in error messages

This commit is contained in:
Matthias Schiffer 2018-04-01 23:21:18 +02:00 committed by Jan-Tarek Butt
parent 7a1c707378
commit f226bb8d06

View File

@ -108,7 +108,7 @@ local function var_error(path, val, msg)
src = site_src() src = site_src()
end end
config_error(src, 'expected %s to %s, but it is %s', path_to_string(path), msg, tostring(val)) config_error(src, 'expected %s to %s, but it is %s (a %s value)', path_to_string(path), msg, tostring(val), type(val))
end end