From c9bbcbec3a5d2276100093e3676aca9eec017ff1 Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Wed, 7 Jun 2017 10:01:44 -0700 Subject: [PATCH] Exclude ios_tools from license script (#3750) ios_tools exists to provide find_xcode.py, which is used only on the Mac Engine bot to select the correct version of Xcode to build with. --- tools/licenses/lib/main.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/licenses/lib/main.dart b/tools/licenses/lib/main.dart index 0e68e1f517a..83d2b3d64da 100644 --- a/tools/licenses/lib/main.dart +++ b/tools/licenses/lib/main.dart @@ -2103,6 +2103,7 @@ class RepositoryRoot extends RepositoryDirectory { return entry.name != 'testing' // only used by tests && entry.name != 'build' // only used by build && entry.name != 'buildtools' // only used by build + && entry.name != 'ios_tools' // only used by build && entry.name != 'tools' // not distributed in binary && entry.name != 'out' // output of build && super.shouldRecurse(entry);