From bdeb55bc3e50466e64225066beaa7a41d3f9172e Mon Sep 17 00:00:00 2001 From: Saker <46983675+IamSaker@users.noreply.github.com> Date: Thu, 8 Aug 2024 17:25:10 +0800 Subject: [PATCH] [#4439] fix(rat): add **/*.out in list of exclusions (#4440) ### What changes were proposed in this pull request? Add `**/*.out` to the list of exclusions will skip the license check on the *.out file. ### Why are the changes needed? Fix: #4439 ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? No --- build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle.kts b/build.gradle.kts index 1cd662d07f6..13023bcd83e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -466,6 +466,7 @@ tasks.rat { "dev/docker/**/*.conf", "dev/docker/kerberos-hive/kadm5.acl", "**/*.log", + "**/*.out", "**/testsets", "**/licenses/*.txt", "**/licenses/*.md",