Skip to content

Commit 173a5d5

Browse files
darrenaustingoderbauer
authored andcommitted
Add .DS_Store to ignore list for the analyzer to run on macos cleanly. (flutter#65530)
1 parent 31a35b2 commit 173a5d5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

dev/bots/analyze.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1141,6 +1141,8 @@ Iterable<File> _allFiles(String workingDirectory, String extension, { @required
11411141
continue;
11421142
if (path.basename(entity.path) == 'gradlew.bat')
11431143
continue;
1144+
if (path.basename(entity.path) == '.DS_Store')
1145+
continue;
11441146
if (extension == null || path.extension(entity.path) == '.$extension') {
11451147
matches += 1;
11461148
yield entity;

0 commit comments

Comments
 (0)