mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.prosodyctl: Remove Lua 5.1 os.execute() return value compat
This commit is contained in:
parent
640b8d49a3
commit
e673312b7f
1 changed files with 1 additions and 2 deletions
|
@ -224,8 +224,7 @@ local function call_luarocks(operation, mod, server)
|
|||
local ok, _, code = os.execute(render_cli("luarocks --lua-version={luav} {op} --tree={dir} {server&--server={server}} {mod?}", {
|
||||
dir = dir; op = operation; mod = mod; server = server; luav = _VERSION:match("5%.%d");
|
||||
}));
|
||||
if type(ok) == "number" then code = ok; end
|
||||
return code;
|
||||
return ok and code;
|
||||
end
|
||||
|
||||
return {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue