Преглед изворни кода

uwp export: fix existing template check

Andrea Beconcini пре 6 година
родитељ
комит
11a1624202
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      platform/uwp/export/export.cpp

+ 1 - 1
platform/uwp/export/export.cpp

@@ -1134,7 +1134,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;
 		}