pull/310/head
Frostebite 2021-12-26 01:08:40 +00:00
parent ec47228d09
commit 43476cbf0c
3 changed files with 9 additions and 9 deletions

2
dist/index.js vendored
View File

@ -505,13 +505,13 @@ class RemoteClientSystem {
const outputChunk = `${stdout.toString()}`;
cloud_runner_logger_1.default.logRemoteCli(outputChunk);
output += outputChunk;
});
child.on('close', function (code) {
cloud_runner_logger_1.default.logRemoteCli(`${code}`);
promise(output);
});
});
});
});
}
}
exports.RemoteClientSystem = RemoteClientSystem;

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -17,11 +17,11 @@ export class RemoteClientSystem {
const outputChunk = `${stdout.toString()}`;
CloudRunnerLogger.logRemoteCli(outputChunk);
output += outputChunk;
});
child.on('close', function (code) {
CloudRunnerLogger.logRemoteCli(`${code}`);
promise(output);
});
});
});
}
}