Browse Source

Merge pull request #68931 from Sauermann/fix-unused-exitcode

Fix unused exitcode in macos export plugin
Rémi Verschelde 2 years ago
parent
commit
a8be081b83
1 changed files with 1 additions and 1 deletions
  1. 1 1
      platform/macos/export/export_plugin.cpp

+ 1 - 1
platform/macos/export/export_plugin.cpp

@@ -727,7 +727,7 @@ Error EditorExportPlatformMacOS::_code_sign(const Ref<EditorExportPreset> &p_pre
 			String str;
 			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) {
 				add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), TTR("Could not start codesign executable, make sure Xcode command line tools are installed."));
 				return err;