This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -1497,6 +1497,16 @@ class _RepositoryIcuDirectory extends _RepositoryDirectory {
1497
1497
}
1498
1498
}
1499
1499
1500
+ class _RepositoryBundletoolDirectory extends _RepositoryDirectory {
1501
+ _RepositoryBundletoolDirectory (_RepositoryDirectory parent, fs.Directory io) : super (parent, io);
1502
+
1503
+ @override
1504
+ bool shouldRecurse (fs.IoNode entry) {
1505
+ return entry.name != 'bundletool.jar' // redundant with LICENSE file
1506
+ && super .shouldRecurse (entry);
1507
+ }
1508
+ }
1509
+
1500
1510
class _RepositoryHarfbuzzDirectory extends _RepositoryDirectory {
1501
1511
_RepositoryHarfbuzzDirectory (_RepositoryDirectory parent, fs.Directory io) : super (parent, io);
1502
1512
@@ -1858,6 +1868,8 @@ class _RepositoryRootThirdPartyDirectory extends _RepositoryGenericThirdPartyDir
1858
1868
return _RepositoryHarfbuzzDirectory (this , entry);
1859
1869
if (entry.name == 'icu' )
1860
1870
return _RepositoryIcuDirectory (this , entry);
1871
+ if (entry.name == 'bundletool' )
1872
+ return _RepositoryBundletoolDirectory (this , entry);
1861
1873
if (entry.name == 'jsr-305' )
1862
1874
return _RepositoryJSR305Directory (this , entry);
1863
1875
if (entry.name == 'libcxx' )
You can’t perform that action at this time.
0 commit comments