1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-12 13:20:55 +00:00

Fix custom build export

This commit is contained in:
Fredia Huya-Kouadio
2021-07-27 09:15:45 -07:00
parent b4778082d1
commit ace6df6947

View File

@@ -2068,6 +2068,8 @@ public:
if (!installed_android_build_template) { if (!installed_android_build_template) {
r_missing_templates = !exists_export_template("android_source.zip", &err); 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"; 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; valid = installed_android_build_template && !r_missing_templates;