Update globalheaders

This commit is contained in:
SirLynix
2024-02-19 22:43:14 +01:00
parent 76136afe76
commit 4d77a25a04
11 changed files with 12 additions and 11 deletions

View File

@@ -22,10 +22,10 @@ on_run(function ()
for _, modulePath in pairs(modules) do
local moduleName = modulePath:match(".*[\\/](.*)")
local config, err = io.open(modulePath .. "/Config.hpp", "r")
local config, err = io.open(modulePath .. "/Export.hpp", "r")
local head = ""
if (not config) then
error("Failed to read config file: " .. err)
error("Failed to read export file: " .. err)
end
for line in config:lines() do