Skip to content
Snippets Groups Projects
Commit c18d43d2 authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-core: use correct file variable in get_site_config()

parent 069bcb33
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ local function get_site_config()
local file = assert(io.open(config))
local decoder = json.new()
ltn12.pump.all(ltn12.source.file(io.open(config)), decoder:sink())
ltn12.pump.all(ltn12.source.file(file), decoder:sink())
file:close()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment