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:
Matthias Schiffer 2018-06-29 20:47:59 +02:00
parent 3d18ae02d8
commit a49cf395bd
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ end
local function path_to_string(path)
return table.concat(path, '/')
return table.concat(path, '.')
end
local function array_to_string(array)