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
parent 8d53591027
commit b6cb6ea3bd
1 changed files with 2 additions and 1 deletions

View File

@ -122,7 +122,8 @@ if (new File('.git').exists()) {
'**/id_rsa',
'**/id_rsa.pub',
'checkstyle/suppressions.xml',
'streams/quickstart/java/src/test/resources/projects/basic/goal.txt'
'streams/quickstart/java/src/test/resources/projects/basic/goal.txt',
'**/generated/**'
])
}
}