mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.prosodyctl: Handle os.execute in Lua 5.2 returning true when command terminates successfully
This commit is contained in:
parent
41fc70c7cf
commit
f7c083c86a
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ end
|
|||
local function getchar(n)
|
||||
local stty_ret = os.execute("stty raw -echo 2>/dev/null");
|
||||
local ok, char;
|
||||
if stty_ret == 0 then
|
||||
if stty_ret == true or stty_ret == 0 then
|
||||
ok, char = pcall(io.read, n or 1);
|
||||
os.execute("stty sane");
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue