feat(bootstrap): return error string from C searcher
This commit is contained in:
parent
a007a190ef
commit
c255e53d37
|
@ -38,8 +38,8 @@ package.cpath =
|
||||||
|
|
||||||
package.native_plugins = {}
|
package.native_plugins = {}
|
||||||
package.searchers = { package.searchers[1], package.searchers[2], function(modname)
|
package.searchers = { package.searchers[1], package.searchers[2], function(modname)
|
||||||
local path = package.searchpath(modname, package.cpath)
|
local path, err = package.searchpath(modname, package.cpath)
|
||||||
if not path then return nil end
|
if not path then return err end
|
||||||
return system.load_native_plugin, path
|
return system.load_native_plugin, path
|
||||||
end }
|
end }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue