revert implement proper error handling
This commit is contained in:
2026-05-24 11:53:58 +02:00
parent a3c2ddbf9e
commit f6b9f8c921
9 changed files with 61 additions and 345 deletions

View File

@@ -15,10 +15,7 @@ end
local function runCommand(cmd)
print("> " .. cmd)
local result = os.execute(cmd)
if result ~= true then
os.exit(1)
end
return os.execute(cmd)
end
local function fixPath(path)
@@ -61,7 +58,6 @@ if not needsDir then
end
local files = {
'src/error.c',
'src/helper.c',
'src/lexer.c',
'src/parser.c',