Update the clean
task configuration
Running `gradlew clean` will now properly delete the generated build artifacts
This commit is contained in:
parent
71f5bb3916
commit
71c76a4ff2
1 changed files with 5 additions and 4 deletions
|
@ -281,6 +281,11 @@ task generateDevTemplate {
|
||||||
finalizedBy 'zipCustomBuild'
|
finalizedBy 'zipCustomBuild'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
task clean(type: Delete) {
|
||||||
|
dependsOn 'cleanGodotEditor'
|
||||||
|
dependsOn 'cleanGodotTemplates'
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Clean the generated editor artifacts.
|
* Clean the generated editor artifacts.
|
||||||
*/
|
*/
|
||||||
|
@ -297,8 +302,6 @@ task cleanGodotEditor(type: Delete) {
|
||||||
// Delete the Godot editor apks in the Godot bin directory
|
// Delete the Godot editor apks in the Godot bin directory
|
||||||
delete("$binDir/android_editor.apk")
|
delete("$binDir/android_editor.apk")
|
||||||
delete("$binDir/android_editor_dev.apk")
|
delete("$binDir/android_editor_dev.apk")
|
||||||
|
|
||||||
finalizedBy getTasksByName("clean", true)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -325,6 +328,4 @@ task cleanGodotTemplates(type: Delete) {
|
||||||
delete("$binDir/godot-lib.debug.aar")
|
delete("$binDir/godot-lib.debug.aar")
|
||||||
delete("$binDir/godot-lib.dev.aar")
|
delete("$binDir/godot-lib.dev.aar")
|
||||||
delete("$binDir/godot-lib.release.aar")
|
delete("$binDir/godot-lib.release.aar")
|
||||||
|
|
||||||
finalizedBy getTasksByName("clean", true)
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue