Fix lib caching
parent
f44c5d30e5
commit
16b0754677
|
|
@ -502,8 +502,11 @@ class RemoteClientSystem {
|
|||
cloud_runner_logger_1.default.logCli(`[DIAGNOSTIC] ${stderr.toString()}`);
|
||||
return;
|
||||
}
|
||||
const outputChunk = `${stdout.toString()}`;
|
||||
cloud_runner_logger_1.default.logCli(outputChunk);
|
||||
const outputChunk = `${stdout}`;
|
||||
const outputLines = outputChunk.split(`\n`);
|
||||
for (const element of outputLines) {
|
||||
cloud_runner_logger_1.default.logCli(element);
|
||||
}
|
||||
output += outputChunk;
|
||||
});
|
||||
child.on('close', function (code) {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -14,8 +14,11 @@ export class RemoteClientSystem {
|
|||
CloudRunnerLogger.logCli(`[DIAGNOSTIC] ${stderr.toString()}`);
|
||||
return;
|
||||
}
|
||||
const outputChunk = `${stdout.toString()}`;
|
||||
CloudRunnerLogger.logCli(outputChunk);
|
||||
const outputChunk = `${stdout}`;
|
||||
const outputLines = outputChunk.split(`\n`);
|
||||
for (const element of outputLines) {
|
||||
CloudRunnerLogger.logCli(element);
|
||||
}
|
||||
output += outputChunk;
|
||||
});
|
||||
child.on('close', function (code) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue