aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2014-10-19 03:05:49 -0400
committerWaqas Hussain <waqas20@gmail.com>2014-10-19 03:05:49 -0400
commit67f3c37c4a458863476c5d63daa868f8072fdfda (patch)
tree10216a2124681c85d0159415b3d495b06a86dbb7 /prosodyctl
parent1a4580ad2c50592b766a9391d4004f3d9395e1fb (diff)
downloadprosody-67f3c37c4a458863476c5d63daa868f8072fdfda.tar.gz
prosody-67f3c37c4a458863476c5d63daa868f8072fdfda.zip
prosodyctl: Fix nil global access traceback in `prosodyctl about` (luarocks 2.2.0 no longer uses module())
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl2
1 files changed, 1 insertions, 1 deletions
diff --git a/prosodyctl b/prosodyctl
index 8580aaf6..4c3ae981 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -548,7 +548,7 @@ function commands.about(arg)
print(" "..path);
end
print("");
- local luarocks_status = (pcall(require, "luarocks.loader") and "Installed ("..(luarocks.cfg.program_version or "2.x+")..")")
+ local luarocks_status = (pcall(require, "luarocks.loader") and "Installed ("..(package.loaded["luarocks.cfg"].program_version or "2.x+")..")")
or (pcall(require, "luarocks.require") and "Installed (1.x)")
or "Not installed";
print("LuaRocks: ", luarocks_status);