Skip to content

Commit a7fe49e

Browse files
authored
Exclude build-settings-logic from included-build tasks workaround (#3710)
1 parent 8938a76 commit a7fe49e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ fun subprojectTasks(taskName: String): List<String> =
8787

8888
fun includedBuildTasks(taskName: String, filter: (IncludedBuild) -> Boolean = { true }): List<TaskReference> =
8989
gradle.includedBuilds
90-
.filter { it.name != "build-logic" }
90+
.filter { it.name != "build-logic" && it.name != "build-settings-logic" }
9191
.filter(filter)
9292
.mapNotNull { it.task(":$taskName") }
9393

0 commit comments

Comments
 (0)