Skip to content

Commit c1faaf9

Browse files
clauderf-
andcommitted
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 <rwfitzge@gmail.com>
1 parent 6882429 commit c1faaf9

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

packages/api/core/src/api/package.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -581,6 +581,7 @@ export const listrPackage = (
581581
},
582582
],
583583
{
584+
concurrent: false,
584585
rendererOptions: {
585586
collapseSubtasks: true,
586587
collapseErrors: false,

0 commit comments

Comments
 (0)