mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.prosodyctl: Function now differentiates its output, depending if it is being called by install or remove
This commit is contained in:
parent
7e472f4b26
commit
289378113a
1 changed files with 7 additions and 1 deletions
|
@ -307,9 +307,15 @@ local function check_flags(arg)
|
|||
end
|
||||
|
||||
local function call_luarocks(operation, mod, dir)
|
||||
if operation == "install" then
|
||||
show_message("Installing %s at %s", mod, dir);
|
||||
os.execute("luarocks --tree='"..dir.."' --server='http://localhost/' "..operation.." "..mod);
|
||||
elseif operation == "remove" then
|
||||
show_message("Removing %s from %s", mod, dir);
|
||||
end
|
||||
os.execute("luarocks --tree='"..dir.."' --server='http://localhost/' "..operation.." "..mod);
|
||||
if operation == "install" then
|
||||
show_module_configuration_help(mod);
|
||||
end
|
||||
end
|
||||
|
||||
return {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue