summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-11-28 10:24:52 +0100
committerGitHub <noreply@github.com>2018-11-28 10:24:52 +0100
commit405d055768961064ca50e24df2769c937263e9ef (patch)
treed9be118947ab3fda062149752d1b13b29e371f8c
parentdd06f6ee70543de0cb61ed9deef568c16c51fedc (diff)
parent11a16242026a8ede69e0fe7df80102b6f45a289b (diff)
Merge pull request #24018 from bbeco/fix_filename_check
uwp export: fix existing template check
-rw-r--r--platform/uwp/export/export.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/export/export.cpp b/platform/uwp/export/export.cpp
index 41e59a5352..c0ea13e7fb 100644
--- a/platform/uwp/export/export.cpp
+++ b/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;
}