We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a74bfe9 commit 1a3dac2Copy full SHA for 1a3dac2
plugin/src/main/groovy/org/stoyicker/androidcheck/findbugs/FindbugsCheck.groovy
@@ -33,7 +33,7 @@ class FindbugsCheck extends CommonCheck {
33
findBugsTask.failOnError = false
34
35
Path sourcePath = findBugsTask.createSourcePath()
36
- sources.findAll { it.exists() }.each {
+ sources.findAll { it.exists() && it.isDirectory() }.each {
37
sourcePath.addFileset(project.ant.fileset(dir: it))
38
}
39
0 commit comments