mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
macOS export: Fix validation of codesigning certificate password
(cherry picked from commit 76e1d1363b)
This commit is contained in:
parent
effefe9feb
commit
5bcff18c76
1 changed files with 1 additions and 1 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue