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:
Ismael Juma 2019-11-21 10:51:55 -08:00 committed by GitHub
parent 09f700ab3e
commit 1d8ebc7b57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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/**'
])
}
}