This is an automated email from the ASF dual-hosted git repository.

mchades pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git


The following commit(s) were added to refs/heads/main by this push:
     new e84ecc1e7 [#4439] fix(rat): add **/*.out in list of exclusions (#4440)
e84ecc1e7 is described below

commit e84ecc1e7c6d4c64c43f257e287270f572d73005
Author: Saker <[email protected]>
AuthorDate: Thu Aug 8 17:25:10 2024 +0800

    [#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 1cd662d07..13023bcd8 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",

Reply via email to