Skip to content

Commit

Permalink
chore: fix incorrect sub-project search
Browse files Browse the repository at this point in the history
  • Loading branch information
chanseokoh committed Dec 2, 2021
1 parent bac88f0 commit 0229189
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rules_java_gapic/resources/gradle/settings.gradle.tmpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
rootDir.listFiles().findAll {
it.isDirectory() && !(it =~ ".*/\\..*") && !(it =~ "^\\..*")
}.each {
rootDir.listFiles().each {
if (it.isDirectory() && new File(it, 'build.gradle').exists()) {
include it.name
}
}

0 comments on commit 0229189

Please sign in to comment.