Explorar o código

Merge pull request #24018 from bbeco/fix_filename_check

uwp export: fix existing template check
Rémi Verschelde %!s(int64=6) %!d(string=hai) anos
pai
achega
405d055768
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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;
 		}