From a49cf395bd666f5b64834a2caf412d70242d05ba Mon Sep 17 00:00:00 2001
From: Matthias Schiffer <mschiffer@universe-factory.net>
Date: Fri, 29 Jun 2018 20:47:59 +0200
Subject: [PATCH] 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.
---
 scripts/check_site.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/check_site.lua b/scripts/check_site.lua
index 8e749c939..41944cb0c 100644
--- a/scripts/check_site.lua
+++ b/scripts/check_site.lua
@@ -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)
-- 
GitLab