mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.prosodyctl.shell: Support for receiving partial lines (no automatic \n)
This commit is contained in:
parent
a946bdf4ae
commit
b617c24af4
1 changed files with 6 additions and 2 deletions
|
@ -89,11 +89,15 @@ local function start(arg) --luacheck: ignore 212/arg
|
|||
local errors = 0; -- TODO This is weird, but works for now.
|
||||
client.events.add_handler("received", function(stanza)
|
||||
if stanza.name == "repl-output" or stanza.name == "repl-result" then
|
||||
local dest = io.stdout;
|
||||
if stanza.attr.type == "error" then
|
||||
errors = errors + 1;
|
||||
io.stderr:write(stanza:get_text(), "\n");
|
||||
dest = io.stderr;
|
||||
end
|
||||
if stanza.attr.eol == "0" then
|
||||
dest:write(stanza:get_text());
|
||||
else
|
||||
print(stanza:get_text());
|
||||
dest:write(stanza:get_text(), "\n");
|
||||
end
|
||||
end
|
||||
if stanza.name == "repl-result" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue