Browse Source

uwp export: fix existing template check

Andrea Beconcini 6 years ago
parent
commit
11a1624202
1 changed files with 1 additions and 1 deletions
  1. 1 1
      platform/uwp/export/export.cpp

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

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