mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-06-18 15:58:09 +00:00
Fix deploy action on node 6
Downgrade @types/node to version 6 as we support node6 Change-type: patch
This commit is contained in:
@ -196,7 +196,7 @@ function assignOutputHandlers(buildTasks: BuildTask[], logger: Logger) {
|
||||
} else {
|
||||
task.streamHook = stream => {
|
||||
stream.on('data', (buf: Buffer) => {
|
||||
const str = buf.toString().trimRight();
|
||||
const str = _.trimEnd(buf.toString());
|
||||
if (str !== '') {
|
||||
displayBuildLog(
|
||||
{ serviceName: task.serviceName, message: str },
|
||||
|
Reference in New Issue
Block a user