Merge pull request #678 from HaveAGitGat/exit

Log CLI exit code
make-only-subtitle-default
HaveAGitGat 1 year ago committed by GitHub
commit a8b0fd3c60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -384,6 +384,7 @@ var CLI = /** @class */ (function () {
if (this.cancelled) {
cliExitCode = 1;
}
this.config.jobLog("CLI ".concat(this.config.cli, " exited with code: ").concat(cliExitCode));
return [2 /*return*/, {
cliExitCode: cliExitCode,
errorLogFull: errorLogFull,

@ -423,6 +423,8 @@ class CLI {
cliExitCode = 1;
}
this.config.jobLog(`CLI ${this.config.cli} exited with code: ${cliExitCode}`);
return {
cliExitCode,
errorLogFull,

Loading…
Cancel
Save