Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/licenses_golden/tool_signature
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Signature: 1177a4d90f87bc4a0198864901db40ab
Signature: 808fd97f7e34a2388888f371bb74e2fb

4 changes: 4 additions & 0 deletions tools/licenses/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2370,6 +2370,10 @@ class _RepositoryFuchsiaDirectory extends _RepositoryDirectory {
@override
bool shouldRecurse(fs.IoNode entry) {
return entry.name != 'toolchain'
// Applies to NOTICE.fuchsia file.
// This is a file that covers things that contribute to the Fuchsia SDK.
// See: fxb/94240
&& !(entry.name == 'NOTICE.fuchsia')
&& super.shouldRecurse(entry);
}

Expand Down