From 6671503789923abba431ff5cd5f3cf7857d5a4db Mon Sep 17 00:00:00 2001 From: Christopher Fujino Date: Wed, 15 Jun 2022 18:36:08 -0700 Subject: [PATCH] add an ignore to analyze snippet code (#106079) --- dev/bots/analyze_snippet_code.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev/bots/analyze_snippet_code.dart b/dev/bots/analyze_snippet_code.dart index 7d09cc947e9a..7c604c6b4e93 100644 --- a/dev/bots/analyze_snippet_code.dart +++ b/dev/bots/analyze_snippet_code.dart @@ -461,7 +461,8 @@ class _SnippetChecker { // Remove output from building the flutter tool. stderr.removeWhere((String line) { return line.startsWith('Building flutter tool...') - || line.startsWith('Waiting for another flutter command to release the startup lock...'); + || line.startsWith('Waiting for another flutter command to release the startup lock...') + || line.startsWith('Flutter assets will be downloaded from '); }); // Check out the stderr to see if the analyzer had it's own issues. if (stderr.isNotEmpty && stderr.first.contains(RegExp(r' issues? found\. \(ran in '))) {