Skip to content

Commit

Permalink
Fix an early nested set expansion.
Browse files Browse the repository at this point in the history
Closes bazelbuild#13309.

PiperOrigin-RevId: 368593772
  • Loading branch information
benjaminp authored and copybara-github committed Apr 15, 2021
1 parent e2ed2fd commit 7e790a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ private static Spawn createCoveragePostProcessingSpawn(
action.getLcovMergerRunfilesSupplier(),
/* filesetMappings= */ ImmutableMap.of(),
/* inputs= */ NestedSetBuilder.<ActionInput>compileOrder()
.addAll(action.getInputs().toList())
.addTransitive(action.getInputs())
.addAll(expandedCoverageDir)
.add(action.getCollectCoverageScript())
.add(action.getCoverageDirectoryTreeArtifact())
Expand Down

0 comments on commit 7e790a0

Please sign in to comment.