Fix in oven, for options that are not strings.

This commit is contained in:
Tom van Dijck 2017-05-24 17:40:10 -07:00
parent 3e4ebb8acc
commit 4d72f4770e

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