diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-07-27 19:08:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 19:08:17 +0200 |
commit | ffb519d06a44531e6fe5d468259e10c3dedf0a4a (patch) | |
tree | 463ff849942e99b1ffdbee1034904f732654fa2a | |
parent | b4778082d1d8afe74eb5900e114b015faab4a526 (diff) | |
parent | ace6df6947d99aeea52daa0f91c9b891e414494e (diff) |
Merge pull request #50946 from m4gr3d/fix_custom_build_export_master
Fix custom build export
-rw-r--r-- | platform/android/export/export.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 956b59ce80..e5d1c2020a 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -2068,6 +2068,8 @@ public: if (!installed_android_build_template) { r_missing_templates = !exists_export_template("android_source.zip", &err); err += TTR("Android build template not installed in the project. Install it from the Project menu.") + "\n"; + } else { + r_missing_templates = false; } valid = installed_android_build_template && !r_missing_templates; |