diff options
author | Andrea Beconcini <andrea.beconcini@gmail.com> | 2018-11-27 20:20:54 +0100 |
---|---|---|
committer | Andrea Beconcini <andrea.beconcini@gmail.com> | 2018-11-27 20:20:54 +0100 |
commit | 11a16242026a8ede69e0fe7df80102b6f45a289b (patch) | |
tree | 0edab06e22241f75c979234aea9316d533ee5fb6 /platform | |
parent | 2e0a94edc6218fd1c7026e7d705725313799e755 (diff) |
uwp export: fix existing template check
Diffstat (limited to 'platform')
-rw-r--r-- | platform/uwp/export/export.cpp | 2 |
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; } |