mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Split long line [luacheck]
This commit is contained in:
parent
c89f88fd54
commit
e90ec99152
1 changed files with 4 additions and 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue