serialize config with function

This commit is contained in:
yago
2015-01-01 16:06:24 +01:00
parent 7ce798b21b
commit a889d410f1
3 changed files with 14 additions and 15 deletions

View File

@ -169,4 +169,15 @@ function file_exists(name)
else
return false
end
end
-- Save into file the data serialized for lua.
function serialize_to_file(data, file)
file = io.open(file, 'w+')
local serialized = serpent.block(data, {
comment = false,
name = "_"
})
file:write(serialized)
file:close()
end