# HG changeset patch # User Kim Alvefur <zash@zash.se> # Date 1492778668 -7200 # Node ID 9aeb1c631f62b349ced34f06c7c4e2f431a08eed # Parent 2f214c4db1700436d3162f46373aeb0787a69458 prosodyctl: Split long line [luacheck] diff -r 2f214c4db170 -r 9aeb1c631f62 prosodyctl --- a/prosodyctl Fri Apr 21 14:43:52 2017 +0200 +++ b/prosodyctl Fri Apr 21 14:44:28 2017 +0200 @@ -139,7 +139,10 @@ 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