소스 검색

Merge pull request #24018 from bbeco/fix_filename_check

uwp export: fix existing template check
Rémi Verschelde 6 년 전
부모
커밋
405d055768
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;
 		}