Use layout.buildDirectory (#326)

This switches Gradle scripts to use `layout.buildDirectory` instead
of hard-coded "build".
This commit is contained in:
Daniel Chao
2024-03-18 21:42:16 -07:00
committed by GitHub
parent 1f68cf0251
commit e4ccf517fa
11 changed files with 65 additions and 56 deletions

View File

@@ -41,7 +41,7 @@ idea {
}
val clean by tasks.registering(Delete::class) {
delete("build")
delete(layout.buildDirectory)
}
val printVersion by tasks.registering {