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

uwp export: fix existing template check

This commit is contained in:
Andrea Beconcini
2018-11-27 20:20:54 +01:00
parent 2e0a94edc6
commit 11a1624202

View File

@@ -1134,7 +1134,7 @@ public:
} break; } break;
} }
if (!exists_export_template("uwp_" + platform_infix + "_debug.zip", &err) || !exists_export_template("uwp_" + platform_infix + "_debug.zip", &err)) { if (!exists_export_template("uwp_" + platform_infix + "_debug.zip", &err) || !exists_export_template("uwp_" + platform_infix + "_release.zip", &err)) {
valid = false; valid = false;
r_missing_templates = true; r_missing_templates = true;
} }