File size: 1,121 Bytes
d7c5875 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
local which_cmd = {}
local loader = require("luarocks.loader")
local cfg = require("luarocks.core.cfg")
local util = require("luarocks.util")
function which_cmd.add_to_parser(parser)
local cmd = parser:command("which", 'Given a module name like "foo.bar", ' ..
"output which file would be loaded to resolve that module by " ..
'luarocks.loader, like "/usr/local/lua/' .. cfg.lua_version .. '/foo/bar.lua".',
util.see_also()):
summary("Tell which file corresponds to a given module name.")
cmd:argument("modname", "Module name.")
end
function which_cmd.command(args)
local pathname, rock_name, rock_version, where = loader.which(args.modname, "lp")
if pathname then
util.printout(pathname)
if where == "l" then
util.printout("(provided by " .. tostring(rock_name) .. " " .. tostring(rock_version) .. ")")
else
local key = rock_name
util.printout("(found directly via package." .. key .. " -- not installed as a rock?)")
end
return true
end
return nil, "Module '" .. args.modname .. "' not found."
end
return which_cmd
|