You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-16 14:00:40 +00:00
Fix unused exitcode in macos export plugin
Fix that the exitcode is never set.
This commit is contained in:
@@ -727,7 +727,7 @@ Error EditorExportPlatformMacOS::_code_sign(const Ref<EditorExportPreset> &p_pre
|
|||||||
String str;
|
String str;
|
||||||
int exitcode = 0;
|
int exitcode = 0;
|
||||||
|
|
||||||
Error err = OS::get_singleton()->execute("codesign", args, &str, nullptr, true);
|
Error err = OS::get_singleton()->execute("codesign", args, &str, &exitcode, true);
|
||||||
if (err != OK) {
|
if (err != OK) {
|
||||||
add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), TTR("Could not start codesign executable, make sure Xcode command line tools are installed."));
|
add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), TTR("Could not start codesign executable, make sure Xcode command line tools are installed."));
|
||||||
return err;
|
return err;
|
||||||
|
|||||||
Reference in New Issue
Block a user