further cleanup input
parent
989aca61f6
commit
fece47ac71
|
|
@ -800,9 +800,8 @@ class CloudRunnerSystem {
|
||||||
output += outputChunk;
|
output += outputChunk;
|
||||||
});
|
});
|
||||||
child.on('close', (code) => {
|
child.on('close', (code) => {
|
||||||
remote_client_logger_1.RemoteClientLogger.log('close');
|
|
||||||
if (!suppressLogs) {
|
if (!suppressLogs) {
|
||||||
remote_client_logger_1.RemoteClientLogger.log(`[Exit code ${code}]`);
|
remote_client_logger_1.RemoteClientLogger.log(`[${code}]`);
|
||||||
}
|
}
|
||||||
if (code !== 0 && !suppressError) {
|
if (code !== 0 && !suppressError) {
|
||||||
throwError(output);
|
throwError(output);
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -25,9 +25,8 @@ export class CloudRunnerSystem {
|
||||||
output += outputChunk;
|
output += outputChunk;
|
||||||
});
|
});
|
||||||
child.on('close', (code) => {
|
child.on('close', (code) => {
|
||||||
RemoteClientLogger.log('close');
|
|
||||||
if (!suppressLogs) {
|
if (!suppressLogs) {
|
||||||
RemoteClientLogger.log(`[Exit code ${code}]`);
|
RemoteClientLogger.log(`[${code}]`);
|
||||||
}
|
}
|
||||||
if (code !== 0 && !suppressError) {
|
if (code !== 0 && !suppressError) {
|
||||||
throwError(output);
|
throwError(output);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue