From 134428aefddc9bef16f59e1c3c071dee8db80815 Mon Sep 17 00:00:00 2001 From: Andrea Beconcini Date: Tue, 27 Nov 2018 20:20:54 +0100 Subject: [PATCH] uwp export: fix existing template check (cherry picked from commit 11a16242026a8ede69e0fe7df80102b6f45a289b) --- platform/uwp/export/export.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/uwp/export/export.cpp b/platform/uwp/export/export.cpp index 52bb1e7d1c7..64528ff9c74 100644 --- a/platform/uwp/export/export.cpp +++ b/platform/uwp/export/export.cpp @@ -1124,7 +1124,7 @@ public: } 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; r_missing_templates = true; }