Merge pull request #22332 from tbrooks8/add_clean_idea_build_task
Add cleanIdeaBuildDir gradle task that cleans the idea build directory
This commit is contained in:
commit
9cd9576b84
|
@ -204,6 +204,14 @@ allprojects {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
task cleanIdeaBuildDir(type: Delete) {
|
||||
delete 'build-idea'
|
||||
}
|
||||
cleanIdeaBuildDir.setGroup("ide")
|
||||
cleanIdeaBuildDir.setDescription("Deletes the IDEA build directory.")
|
||||
|
||||
tasks.cleanIdea.dependsOn(cleanIdeaBuildDir)
|
||||
}
|
||||
|
||||
idea {
|
||||
|
|
Loading…
Reference in New Issue