Skip to content
Snippets Groups Projects
Commit 55d87c26 authored by dg's avatar dg
Browse files

Syntax errors in superloaded files will correctly report in the log

git-svn-id: http://svn.net-core.org/repos/t-engine4@6754 51575b47-30f0-44d4-a5cc-537603b46e54
parent 54231c23
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,10 @@ local te4_loader = function(name)
local addon = __addons_superload_order[i]
local fn = "/mod/addons/"..addon.."/superload/"..name..".lua"
if fs.exists(fn) then
local f = loadfile(fn)
local f, err = loadfile(fn)
if not f and err then
error("Error while superloading '"..fn.."':\n"..tostring(err))
end
local base = prev
setfenv(f, setmetatable({
loadPrevious = function()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment