From c1faaf9965911f1afa5752e8403ec58ff1b57d84 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 1 Jul 2026 18:31:51 +0000 Subject: [PATCH] fix(core): disable concurrency for package subtasks (backport of #4276) The inner package subtask list (copy-files, prepare-native-dependencies, finalize-package) was unintentionally inheriting "concurrent": true from the list of targets a couple of levels up. As a result all three subtasks appear to start simultaneously in CI logs even though the underlying work in @electron/packager runs sequentially. Set concurrent: false on that inner list so the subtasks render sequentially. Co-authored-by: Ryan Fitzgerald --- packages/api/core/src/api/package.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/api/core/src/api/package.ts b/packages/api/core/src/api/package.ts index a3fb614bf6..0c057dd339 100644 --- a/packages/api/core/src/api/package.ts +++ b/packages/api/core/src/api/package.ts @@ -581,6 +581,7 @@ export const listrPackage = ( }, ], { + concurrent: false, rendererOptions: { collapseSubtasks: true, collapseErrors: false,