This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 2911
2911
../../../third_party/zlib/google/zip_reader_unittest.cc
2912
2912
../../../third_party/zlib/google/zip_unittest.cc
2913
2913
../../../third_party/zlib/patches/README
2914
- ../../../tools
2914
+ ../../../tools
Original file line number Diff line number Diff line change 1
- Signature: 2aaa7d1662adb75aac43db23f4bd5d97
1
+ Signature: e9bc01b7e51cb2185dc056dffd7ff351
2
2
Original file line number Diff line number Diff line change @@ -2121,8 +2121,11 @@ Future<void> main(List<String> arguments) async {
2121
2121
system.exit (1 );
2122
2122
}
2123
2123
// write to disk the list of files we did _not_ cover, so it's easier to catch in diffs
2124
+ final String excluded = (_RepositoryDirectory ._excluded.map (
2125
+ (fs.IoNode node) => node.fullName,
2126
+ ).toSet ().toList ()..sort ()).join ('\n ' );
2124
2127
system.File (path.join (argResults['out' ] as String , 'excluded_files' )).writeAsStringSync (
2125
- ( _RepositoryDirectory ._excluded. map ((fs. IoNode node) => node.fullName). toSet (). toList ().. sort ()). join ( ' \n ') ,
2128
+ '$ excluded \n ' ,
2126
2129
);
2127
2130
}
2128
2131
} catch (e, stack) {
You can’t perform that action at this time.
0 commit comments