mirror of https://github.com/apache/kafka.git
MINOR: Rat should ignore generated directories (#7729)
For some reason, PR builds are failing due to the `rat` license check even though it should ignore files included in `.gitignore`. Reviewers: Jason Gustafson <jason@confluent.io>
This commit is contained in:
parent
09f700ab3e
commit
1d8ebc7b57
|
@ -136,7 +136,8 @@ if (file('.git').exists()) {
|
|||
'**/id_rsa.pub',
|
||||
'checkstyle/suppressions.xml',
|
||||
'streams/quickstart/java/src/test/resources/projects/basic/goal.txt',
|
||||
'streams/streams-scala/logs/*'
|
||||
'streams/streams-scala/logs/*',
|
||||
'**/generated/**'
|
||||
])
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue