uwp export: fix existing template check

(cherry picked from commit 11a1624202)
This commit is contained in:
Andrea Beconcini 2018-11-27 20:20:54 +01:00 committed by Rémi Verschelde
parent bf6186449f
commit 134428aefd
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}