cripts/check_site.lua: print paths separated by '.' rather than '/'
Using slashs instead of dots is a bit unexpected, and as long as we're not going for full-blown JSONPath, neither is more correct than the other.
This commit is contained in:
parent
3d18ae02d8
commit
a49cf395bd
@ -63,7 +63,7 @@ end
|
|||||||
|
|
||||||
|
|
||||||
local function path_to_string(path)
|
local function path_to_string(path)
|
||||||
return table.concat(path, '/')
|
return table.concat(path, '.')
|
||||||
end
|
end
|
||||||
|
|
||||||
local function array_to_string(array)
|
local function array_to_string(array)
|
||||||
|
Loading…
Reference in New Issue
Block a user