util.openssl: Remove Lua 5.1 os.execute() return value compat

This commit is contained in:
Kim Alvefur 2022-10-20 17:36:05 +02:00
parent 1acd5e0474
commit 640b8d49a3

View file

@ -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;
});