seems to work though, whatever the root object is ...
# gradle
a
seems to work though, whatever the root object is (Settings?) seems to have a fileTree method on it:
Copy code
fileTree(".") { include("**/build.gradle.kts") }.map { it.parent }.forEach {
    println("build at $it")
}