uwp export: fix existing template check
This commit is contained in:
parent
2e0a94edc6
commit
11a1624202
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue