From 91e31dca51b4f3aa934a5d33a7fa22919e4ceb86 Mon Sep 17 00:00:00 2001 From: gaaclarke <30870216+gaaclarke@users.noreply.github.com> Date: Fri, 21 Jun 2019 11:26:12 -0700 Subject: [PATCH] Made the license check ignore the .vscode directory. (#9398) * Made the license check ignore the .vscode directory. * updated license hash * updated signature --- ci/licenses_golden/tool_signature | 2 +- tools/licenses/lib/main.dart | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/licenses_golden/tool_signature b/ci/licenses_golden/tool_signature index 420e7603c2..1d434abee0 100644 --- a/ci/licenses_golden/tool_signature +++ b/ci/licenses_golden/tool_signature @@ -1,2 +1,2 @@ -Signature: 987c7f6d5aa9e61354f5aff08b26462b +Signature: 72ebd2a03a8ef0d932f937c97ed540e5 diff --git a/tools/licenses/lib/main.dart b/tools/licenses/lib/main.dart index 45c6cbe25c..be7aaa123a 100644 --- a/tools/licenses/lib/main.dart +++ b/tools/licenses/lib/main.dart @@ -930,6 +930,7 @@ class _RepositoryDirectory extends _RepositoryEntry implements LicenseSource { entry.name != '.git' && entry.name != '.github' && entry.name != '.gitignore' && + entry.name != '.vscode' && entry.name != 'test' && entry.name != 'test.disabled' && entry.name != 'test_support' && -- GitLab