summaryrefslogtreecommitdiff
path: root/platform/android/java
diff options
context:
space:
mode:
authorthebestnom <shoval.arad@gmail.com>2021-04-28 21:59:42 +0300
committerthebestnom <shoval.arad@gmail.com>2021-04-28 21:59:42 +0300
commit47bf216af9f1f474ed99f395f562095191379ed5 (patch)
tree2fea54b4034ed2a21fc8c3375318eb27de76166e /platform/android/java
parent690c00d52261ab3132c520ddb317dd1c4e5f23b1 (diff)
[Android] fix generateDevTemplate
Diffstat (limited to 'platform/android/java')
-rw-r--r--platform/android/java/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/java/build.gradle b/platform/android/java/build.gradle
index 81570d9d86..a7fe500be2 100644
--- a/platform/android/java/build.gradle
+++ b/platform/android/java/build.gradle
@@ -112,7 +112,7 @@ task copyReleaseAARToBin(type: Copy) {
* The zip file also includes some gradle tools to allow building of the custom build.
*/
task zipCustomBuild(type: Zip) {
- dependsOn ':generateGodotTemplates'
+ onlyIf { generateGodotTemplates.state.executed || generateDevTemplate.state.executed }
doFirst {
logger.lifecycle("Generating Godot custom build template")
}