build.gradle: Add clean task to root project

Missed this when restructuring

Signed-off-by: Álvaro Brey Vilas <alvaro.brey@nextcloud.com>
This commit is contained in:
Álvaro Brey Vilas 2022-03-21 09:19:15 +01:00
parent 321a97acf7
commit 354047fdce
No known key found for this signature in database
GPG Key ID: 2585783189A62105
1 changed files with 4 additions and 0 deletions

View File

@ -37,4 +37,8 @@ subprojects {
maven { url "https://jitpack.io" }
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}