mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Corrected output printed by the remove command
This commit is contained in:
parent
c21b60857f
commit
9da5559197
1 changed files with 2 additions and 2 deletions
|
@ -151,12 +151,12 @@ function commands.remove(arg)
|
|||
-- I'm considering the flag is the first, but there can be many flags
|
||||
if arg[1] and arg[1]:sub(1, #flag) == flag then
|
||||
local dir = arg[1]:match("=(.+)$")
|
||||
print("Removing module "..arg[2].." at "..dir..", from luarocks repo")
|
||||
print("Removing module "..arg[2].." at "..dir)
|
||||
-- These extra double brackets allow us to correctly process names with spaces
|
||||
os.execute("luarocks remove --tree='"..dir.."' "..arg[2])
|
||||
return 0;
|
||||
else
|
||||
print("Removing "..arg[1].." from ./plugins")
|
||||
print("Removing "..arg[1].." from "..prosody.paths.plugins)
|
||||
os.execute("luarocks --tree='"..prosody.paths.plugins.."' remove "..arg[1])
|
||||
print("Done!")
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue