diff options
author | Johan Mattsson <39247600+mjunix@users.noreply.github.com> | 2023-03-03 23:20:36 +0100 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-04-24 16:28:25 +0200 |
commit | 5bcff18c76e57525eacc7fd99143fc782bee4ea7 (patch) | |
tree | 7ef1ce45b196cd9b5d1e90d22d639d6365a29d7e | |
parent | effefe9feb1013312fdbe9cbae24828807cddd29 (diff) |
macOS export: Fix validation of codesigning certificate password
(cherry picked from commit 76e1d1363b954fa4ca989516ad5851c40a288a48)
-rw-r--r-- | platform/macos/export/export_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/macos/export/export_plugin.cpp b/platform/macos/export/export_plugin.cpp index 5a097adf39..ab76d9b273 100644 --- a/platform/macos/export/export_plugin.cpp +++ b/platform/macos/export/export_plugin.cpp @@ -768,7 +768,7 @@ Error EditorExportPlatformMacOS::_code_sign(const Ref<EditorExportPreset> &p_pre String certificate_file = p_preset->get("codesign/certificate_file"); String certificate_pass = p_preset->get("codesign/certificate_password"); - if (!certificate_file.is_empty() && !certificate_file.is_empty()) { + if (!certificate_file.is_empty() && !certificate_pass.is_empty()) { args.push_back("--p12-file"); args.push_back(certificate_file); args.push_back("--p12-password"); |