mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
loader/lua: Remove compat shim for loader.lua_path
loader.lua_path was committed before stable/13 was branched, and merged in to for 12.2. Remove workaround for it not being present. Sponsored by: Netflix Reviewed by: kevans Differential Revision: https://reviews.freebsd.org/D44143 (cherry picked from commit ab97d42addae97a389c6f22d6bba62ed954bb8e7)
This commit is contained in:
parent
71969b965b
commit
216c56ff1d
1 changed files with 1 additions and 7 deletions
|
|
@ -65,13 +65,7 @@ end
|
|||
-- message on failure.
|
||||
function try_include(module)
|
||||
if module:sub(1, 1) ~= "/" then
|
||||
local lua_path = loader.lua_path
|
||||
-- XXX Temporary compat shim; this should be removed once the
|
||||
-- loader.lua_path export has sufficiently spread.
|
||||
if lua_path == nil then
|
||||
lua_path = "/boot/lua"
|
||||
end
|
||||
module = lua_path .. "/" .. module
|
||||
module = loader.lua_path .. "/" .. module
|
||||
-- We only attempt to append an extension if an absolute path
|
||||
-- wasn't specified. This assumes that the caller either wants
|
||||
-- to treat this like it would require() and specify just the
|
||||
|
|
|
|||
Loading…
Reference in a new issue