commit | 4253e42b43e5f029f38626706255ff17e2fbdf17 | [log] [tgz] |
---|---|---|
author | Darren Austin <darrenaustin@google.com> | Fri Sep 18 14:37:04 2020 -0700 |
committer | GitHub <noreply@github.com> | Fri Sep 18 14:37:04 2020 -0700 |
tree | 5f15f1328c69e3c4a8a063a2d104f010968e41f4 | |
parent | c11440ae92199cecbe2d80b480675bd7eddcc3b7 [diff] [blame] |
Add .DS_Store to ignore list for the analyzer to run on macos cleanly. (#65530)
diff --git a/dev/bots/analyze.dart b/dev/bots/analyze.dart index be17149..d64d064 100644 --- a/dev/bots/analyze.dart +++ b/dev/bots/analyze.dart
@@ -1141,6 +1141,8 @@ continue; if (path.basename(entity.path) == 'gradlew.bat') continue; + if (path.basename(entity.path) == '.DS_Store') + continue; if (extension == null || path.extension(entity.path) == '.$extension') { matches += 1; yield entity;