From 8cfacc9cbca9ca4b381ff5d20f29e4be767abdd2 Mon Sep 17 00:00:00 2001 From: Paulo Castro Date: Fri, 12 Jul 2019 16:18:28 +0100 Subject: [PATCH] Fix truncated logs in local multicontainer image builds (balena build/deploy) Resolves: #1346 Change-type: patch Signed-off-by: Paulo Castro --- lib/utils/compose.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/utils/compose.coffee b/lib/utils/compose.coffee index 43ae585d..0e781ff3 100644 --- a/lib/utils/compose.coffee +++ b/lib/utils/compose.coffee @@ -621,7 +621,7 @@ class BuildProgressUI stream = through.obj (event, _enc, cb) -> eventHandler(service, event) cb() - stream.pipe(tty.stream) + stream.pipe(tty.stream, end: false) [ service, stream ] .fromPairs() .value() @@ -755,7 +755,7 @@ class BuildProgressInline stream = through.obj (event, _enc, cb) -> eventHandler(service, event) cb() - stream.pipe(outStream) + stream.pipe(outStream, end: false) [ service, stream ] .fromPairs() .value()