mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl about: Strip name from lua module _VERSION
Some modules have _VERSION = "LuaModule x.y.z", so it is a bit weird to show the name twice.
This commit is contained in:
parent
c80ef42112
commit
947c136c95
1 changed files with 5 additions and 1 deletions
|
@ -457,7 +457,11 @@ function commands.about(arg)
|
|||
if #name > longest_name then
|
||||
longest_name = #name;
|
||||
end
|
||||
module_versions[name] = module._VERSION;
|
||||
local mod_version = module._VERSION;
|
||||
if tostring(mod_version):sub(1, #name+1) == name .. " " then
|
||||
mod_version = mod_version:sub(#name+2);
|
||||
end
|
||||
module_versions[name] = mod_version;
|
||||
end
|
||||
end
|
||||
if lunbound then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue