new lua_fn make_string_version

This commit is contained in:
Anatoliy Belyanskiy 2023-08-17 20:27:31 +10:00
parent dd98f391c9
commit 64c3057bce

View File

@ -428,4 +428,11 @@ function increase_build(fname)
assert(fp:close()) assert(fp:close())
return build return build
end end
-- []===========================[]
-- []===========================[]
function make_string_version(ver_, mod_, build_)
return (tostring(ver_) .. "." .. tostring(mod_) .. "." .. tostring(build_))
end
-- []===========================[] -- []===========================[]