Fix lib caching
parent
f44c5d30e5
commit
16b0754677
|
|
@ -502,8 +502,11 @@ class RemoteClientSystem {
|
||||||
cloud_runner_logger_1.default.logCli(`[DIAGNOSTIC] ${stderr.toString()}`);
|
cloud_runner_logger_1.default.logCli(`[DIAGNOSTIC] ${stderr.toString()}`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const outputChunk = `${stdout.toString()}`;
|
const outputChunk = `${stdout}`;
|
||||||
cloud_runner_logger_1.default.logCli(outputChunk);
|
const outputLines = outputChunk.split(`\n`);
|
||||||
|
for (const element of outputLines) {
|
||||||
|
cloud_runner_logger_1.default.logCli(element);
|
||||||
|
}
|
||||||
output += outputChunk;
|
output += outputChunk;
|
||||||
});
|
});
|
||||||
child.on('close', function (code) {
|
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()}`);
|
CloudRunnerLogger.logCli(`[DIAGNOSTIC] ${stderr.toString()}`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const outputChunk = `${stdout.toString()}`;
|
const outputChunk = `${stdout}`;
|
||||||
CloudRunnerLogger.logCli(outputChunk);
|
const outputLines = outputChunk.split(`\n`);
|
||||||
|
for (const element of outputLines) {
|
||||||
|
CloudRunnerLogger.logCli(element);
|
||||||
|
}
|
||||||
output += outputChunk;
|
output += outputChunk;
|
||||||
});
|
});
|
||||||
child.on('close', function (code) {
|
child.on('close', function (code) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue