fix(core): Support task runner in execute and execute-batch commands (#15147)

This commit is contained in:
Iván Ovejero
2025-05-06 17:53:36 +02:00
committed by GitHub
parent 1e5cb55494
commit 985f554501
7 changed files with 196 additions and 15 deletions

View File

@@ -112,6 +112,8 @@ export class ExecuteBatch extends BaseCommand {
override needsCommunityPackages = true;
override needsTaskRunner = true;
/**
* Gracefully handles exit.
* @param {boolean} skipExit Whether to skip exit or number according to received signal
@@ -335,7 +337,6 @@ export class ExecuteBatch extends BaseCommand {
if (results.summary.failedExecutions > 0) {
this.exit(1);
}
this.exit(0);
}
mergeResults(results: IResult, retryResults: IResult) {