Skip to content

Commit 063e60d

Browse files
authored
Fix processed globs check. (#4014)
1 parent d4fd712 commit 063e60d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_runner_core/lib/src/generate/build.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ class Build {
10451045
}
10461046
} else if (inputNode.type == NodeType.glob) {
10471047
// Ensure that the glob was evaluated, so [changedOutputs] is updated.
1048-
if (!processedOutputs.contains(input)) {
1048+
if (!processedGlobs.contains(input)) {
10491049
await _buildGlobNode(input);
10501050
}
10511051
if (changedOutputs.contains(input)) {

0 commit comments

Comments
 (0)