Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/base/_foundation.lua
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,13 @@

local res = os.locate(fname, with_ext, p5, p4)
res = res or fname
local compiled_chunk = loadfile(res)
local compiled_chunk, err = loadfile(res)
if compiled_chunk == nil then
premake.error("Cannot find either " .. table.implode({fname, with_ext, p5, p4}, "", "", " or "))
if err then
Comment thread
samsinsane marked this conversation as resolved.
Outdated
premake.error("Cannot load " .. fname .. ": " .. err)
else
premake.error("Cannot find either " .. table.implode({fname, with_ext, p5, p4}, "", "", " or "))
end
end
return res, compiled_chunk
end
Expand Down