aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoão Duarte <jvsDuarte08@gmail.com>2019-08-16 14:58:29 -0700
committerJoão Duarte <jvsDuarte08@gmail.com>2019-08-16 14:58:29 -0700
commit9d8380db119f65c4bb6d5ef5701c35e7b5722e07 (patch)
tree621e16be6ed7f376067cca6278fc5bb2cc5d0cec
parent32b5c6feeb60545096871fd9bd3d2c3fc18b96dc (diff)
downloadprosody-9d8380db119f65c4bb6d5ef5701c35e7b5722e07.tar.gz
prosody-9d8380db119f65c4bb6d5ef5701c35e7b5722e07.zip
prosodyctl: Install, remove and list commands now use the call_luarocks function
-rwxr-xr-xprosodyctl11
1 files changed, 4 insertions, 7 deletions
diff --git a/prosodyctl b/prosodyctl
index 4c8892ac..664deb51 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -76,7 +76,7 @@ local show_usage = prosodyctl.show_usage;
local show_yesno = prosodyctl.show_yesno;
local show_prompt = prosodyctl.show_prompt;
local read_password = prosodyctl.read_password;
-local execute_command = prosodyctl.execute_command;
+local call_luarocks = prosodyctl.call_luarocks;
local jid_split = require "util.jid".prepped_split;
@@ -90,8 +90,7 @@ function commands.install(arg)
show_usage([[install]], [[Installs a prosody/luarocks plugin]]);
return 1;
end
- table.insert(arg, "install");
- execute_command(arg);
+ call_luarocks(arg[1], "install")
end
function commands.remove(arg)
@@ -99,8 +98,7 @@ function commands.remove(arg)
show_usage([[remove]], [[Removes a module installed in the working directory's plugins folder]]);
return 1;
end
- table.insert(arg, "remove");
- execute_command(arg);
+ call_luarocks(arg[1], "remove")
end
function commands.list(arg)
@@ -108,8 +106,7 @@ function commands.list(arg)
show_usage([[list]], [[Shows installed rocks]]);
return 1;
end
- table.insert(arg, "list");
- execute_command(arg);
+ call_luarocks(arg[1], "list")
end
function commands.adduser(arg)