Merge pull request #831 from Blizzard/fix-options

Fix in oven, for options that are not strings.
This commit is contained in:
Tom van Dijck 2017-06-21 09:36:44 -07:00 committed by GitHub
commit b77e5763f6

View File

@ -71,7 +71,7 @@
for key, value in pairs(_OPTIONS) do
local term = key
if value ~= "" then
term = term .. "=" .. value
term = term .. "=" .. tostring(value)
end
table.insert(options, term)
end