Dear RAT/creadur project, I am trying to use the command line RAT (i.e. java -jar apache-rat-1.16.1.jar ...) in github actions on a go project. Probably a lot of irrelevant information. the jist is that exclusion seem broken. I tried several options from the command line. ``` java -jar apache-rat-0.16.1/apache-rat-0.16.1.jar -d . -e ./CHANGES.md -e ./go.sum -e ./rat-report.txt -e exception.lst -e ./apache-rat-0.16.1 -e ./vendor > rat-report.txt java -jar apache-rat-0.16.1/apache-rat-0.16.1.jar -d . -E exception.lst > rat-report.txt ``` with exception.lst containing all of the files above and tried .vendor .vendor/* .vendor/**
It keeps reporting ``` 484 Unknown Licenses ``` which are basically all the files from the exclude list. Am I hitting a bug or missing how this should work? regards,
