Unverified Commit 4253e42b authored by Darren Austin's avatar Darren Austin Committed by GitHub

Add .DS_Store to ignore list for the analyzer to run on macos cleanly. (#65530)

parent c11440ae
......@@ -1141,6 +1141,8 @@ Iterable<File> _allFiles(String workingDirectory, String extension, { @required
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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment