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 29112911../../../third_party/zlib/google/zip_reader_unittest.cc
29122912../../../third_party/zlib/google/zip_unittest.cc
29132913../../../third_party/zlib/patches/README
2914- ../../../tools
2914+ ../../../tools
Original file line number Diff line number Diff line change 1- Signature: 2aaa7d1662adb75aac43db23f4bd5d97
1+ Signature: 0c7a655c2ede2db6189628d5a64686b8
22
Original file line number Diff line number Diff line change @@ -2121,8 +2121,11 @@ Future<void> main(List<String> arguments) async {
21212121 system.exit (1 );
21222122 }
21232123 // 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 ' );
21242127 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 " ,
21262129 );
21272130 }
21282131 } catch (e, stack) {
You can’t perform that action at this time.
0 commit comments