Skip to content

Commit 0bb76dd

Browse files
committed
fix(mcl/nixEvalJobs): Properly filter useless warnings
1 parent 1d3e8ee commit 0bb76dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/mcl/src/src/mcl/commands/ci_matrix.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ Package[] nixEvalJobs(string flakeAttrPrefix, string cachixUrl, bool doCheck = t
368368
})(false);
369369

370370
const stderrLogs = pipes.stderr.byLine
371-
.filter!(line => !uselessWarnings.canFind(line))
371+
.filter!(line => !uselessWarnings.any!(w => line.canFind(w)))
372372
.join("\n");
373373

374374
logWarning(stderrLogs);

0 commit comments

Comments
 (0)