Skip to content

Commit

Permalink
Minor wording update to include/includeexternal error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-sim committed Sep 28, 2024
1 parent 12c8739 commit bba6366
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/base/api.lua
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
else
local err = foundFnameOrErr
local caller = filelineinfo(2)
premake.error(caller .. ": includeexternal(" .. fname .. ") not found: " .. err)
premake.error(caller .. ": includeexternal(" .. fname .. ") not found or failed to load: " .. err)
end
end

Expand Down
2 changes: 1 addition & 1 deletion src/base/globals.lua
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
else
local err = foundFnameOrErr
local caller = filelineinfo(2)
premake.error(caller .. ": include(" .. fname .. ") not found: " .. err)
premake.error(caller .. ": include(" .. fname .. ") not found or failed to load: " .. err)
end
end

Expand Down

0 comments on commit bba6366

Please sign in to comment.