Skip to content

Commit

Permalink
fixup! Allow locally build actions with scrubbed inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
bozaro committed Jan 11, 2024
1 parent d8e9a3b commit 0dacc65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1613,7 +1613,7 @@ private static boolean hasScrubbedInput(Spawn spawn, @Nullable Scrubber scrubber
}
}
var inputFiles = spawn.getInputFiles();
for (ActionInput inputFile : inputFiles.getLeaves()) {
for (ActionInput inputFile : inputFiles.toList()) {
if (spawnScrubber.shouldOmitInput(inputFile)) {
return true;
}
Expand Down

0 comments on commit 0dacc65

Please sign in to comment.