diff options
author | Kim Alvefur <zash@zash.se> | 2017-04-21 14:44:28 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-04-21 14:44:28 +0200 |
commit | a1679e225c85011be0aabb00316c8ea754312352 (patch) | |
tree | 9259a4633e20690a967eaad7318c0ab258f2ef2e /prosodyctl | |
parent | 7be07e3ec3b95f11d1e392d7e4c65f6bf91717cf (diff) | |
download | prosody-a1679e225c85011be0aabb00316c8ea754312352.tar.gz prosody-a1679e225c85011be0aabb00316c8ea754312352.zip |
prosodyctl: Split long line [luacheck]
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |