mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.openssl: Remove Lua 5.1 os.execute() return value compat
This commit is contained in:
parent
1acd5e0474
commit
640b8d49a3
1 changed files with 1 additions and 2 deletions
|
@ -166,8 +166,7 @@ do -- Lua to shell calls.
|
|||
setmetatable(_M, {
|
||||
__index = function(_, command)
|
||||
return function(opts)
|
||||
local ret = os_execute(serialize(command, type(opts) == "table" and opts or {}));
|
||||
return ret == true or ret == 0;
|
||||
return os_execute(serialize(command, type(opts) == "table" and opts or {}));
|
||||
end;
|
||||
end;
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue