1
0
mirror of https://github.com/Adorable-Catgirl/LuaComp.git synced 2025-04-05 04:08:42 +11:00

Cross-platform(?) file existence check.

This commit is contained in:
Atirut Wattanamongkol 2021-04-16 16:56:43 +07:00
parent 832798a3a5
commit 20aa15556a

View File

@ -1,8 +1,8 @@
function directives.include(env, file)
if (not os.execute("stat "..file..">/dev/null")) then
local f = io.open(file, "r")
if f == nil then
return false, "File `"..file.."' does not exist!"
end
local f = io.open(file, "r")
local fast = mkast(f, file)
fast.file = file
local code = generate(fast)