summaryrefslogtreecommitdiffstats
path: root/platform/macos/export/export_plugin.cpp
diff options
context:
space:
mode:
authorJohan Mattsson <39247600+mjunix@users.noreply.github.com>2023-03-03 23:20:36 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-04-11 18:45:46 +0200
commit76e1d1363b954fa4ca989516ad5851c40a288a48 (patch)
tree209e948cf7b3aa3457d9d16c733d496de4060b95 /platform/macos/export/export_plugin.cpp
parent61d2c855114c824f5ca27ded0a1fa71cc7b21134 (diff)
downloadredot-engine-76e1d1363b954fa4ca989516ad5851c40a288a48.tar.gz
macOS export: Fix validation of codesigning certificate password
Diffstat (limited to 'platform/macos/export/export_plugin.cpp')
-rw-r--r--platform/macos/export/export_plugin.cpp2
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");