Skip to content

Commit

Permalink
Merge pull request #925 from adamralph/fix-parallel-inputs-as-dependency
Browse files Browse the repository at this point in the history
fix running inputs in parallel when the target is a dependency
  • Loading branch information
adamralph authored Dec 21, 2023
2 parents bfd9f63 + a301d60 commit 51f8185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bullseye/Internal/TargetCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ async Task RunDependencyAsync(string dependency)
}
else
{
await this.RunAsync(this[dependency], explicitTargets, dryRun, false, skipDependencies, messageOnly, output, runningTargets, sync, dependencyPath).Tax();
await this.RunAsync(this[dependency], explicitTargets, dryRun, parallel, skipDependencies, messageOnly, output, runningTargets, sync, dependencyPath).Tax();
}
}

Expand Down

0 comments on commit 51f8185

Please sign in to comment.