Skip to content

Commit cf42445

Browse files
committed
improve modulename
1 parent 539785c commit cf42445

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xmake/plugins/show/lists/apis.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ function script_extension_module_apis()
282282
if path.filename(modulename) == "main.lua" then
283283
modulename = path.directory(modulename)
284284
end
285-
modulename = modulename:gsub("/", "."):gsub("%.lua", "")
285+
modulename = modulename:gsub("[\\/]", "."):gsub("%.lua", "")
286286
local instance = import(modulename, {try = true, anonymous = true})
287287
if instance then
288288
if _is_callable(instance) then

0 commit comments

Comments
 (0)