mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
prosodyctl: Rewrote the remove command, to make it cleaner and easier to work with
This commit is contained in:
parent
289378113a
commit
f74f2d0d17
1 changed files with 6 additions and 9 deletions
15
prosodyctl
15
prosodyctl
|
@ -109,17 +109,14 @@ function commands.remove(arg)
|
||||||
show_usage([[remove]], [[Removes a module installed in the wroking directory's plugins folder]]);
|
show_usage([[remove]], [[Removes a module installed in the wroking directory's plugins folder]]);
|
||||||
return 1;
|
return 1;
|
||||||
end
|
end
|
||||||
local installer_plugin_path = prosodyctl.get_path_custom_plugins(prosody.paths.plugins)
|
local operation = "remove";
|
||||||
local flag = "--tree="
|
local tree, mod, dir = check_flags(arg);
|
||||||
-- I'm considering this optional flag comes first
|
if tree then
|
||||||
if arg[1] and arg[1]:sub(1, #flag) == flag then
|
call_luarocks(operation, mod, dir);
|
||||||
local dir = arg[1]:match("=(.+)$")
|
|
||||||
show_message("Removing module %s at %s", arg[2], dir)
|
|
||||||
os.execute("luarocks remove --tree='"..dir.."' "..arg[2])
|
|
||||||
return 0;
|
return 0;
|
||||||
else
|
else
|
||||||
show_message("Removing %s from %s", arg[1], installer_plugin_path)
|
dir = get_path_custom_plugins(prosody.paths.plugins);
|
||||||
os.execute("luarocks --tree='"..installer_plugin_path.."' remove "..arg[1])
|
call_luarocks(operation, mod, dir);
|
||||||
return 0;
|
return 0;
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue