aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-04-21 14:44:28 +0200
committerKim Alvefur <zash@zash.se>2017-04-21 14:44:28 +0200
commite90ec99152efd2932a3c0ae32215e968cbf5ac8f (patch)
tree9259a4633e20690a967eaad7318c0ab258f2ef2e /prosodyctl
parentc89f88fd5484334093692f4268be3d1358bf1dfa (diff)
downloadprosody-e90ec99152efd2932a3c0ae32215e968cbf5ac8f.tar.gz
prosody-e90ec99152efd2932a3c0ae32215e968cbf5ac8f.zip
prosodyctl: Split long line [luacheck]
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl5
1 files changed, 4 insertions, 1 deletions
diff --git a/prosodyctl b/prosodyctl
index 0827a215..637fdd12 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -139,7 +139,10 @@ local want_pposix_version = "0.4.0";
local have_pposix, pposix = pcall(require, "util.pposix");
if have_pposix and pposix then
- if pposix._VERSION ~= want_pposix_version then print(string.format("Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version)); return; end
+ if pposix._VERSION ~= want_pposix_version then
+ print(string.format("Unknown version (%s) of binary pposix module, expected %s",
+ tostring(pposix._VERSION), want_pposix_version)); return;
+ end
current_uid = pposix.getuid();
local arg_root = arg[1] == "--root";
if arg_root then table.remove(arg, 1); end