2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-05-20 00:21:42 +00:00
Files

8 lines
157 B
Lua
Raw Permalink Normal View History

-- Platform functions
function ExecutableByOs(name)
if os.host() == "windows" then
return name .. ".exe"
else
return name
end
end