summaryrefslogtreecommitdiffstats
path: root/platform/macos/export/export_plugin.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-07-24 09:59:38 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-07-24 09:59:38 +0200
commit693b69d65fd525d275adb64e22a4382dffcd216e (patch)
treeb871311361a96b93e4906626e45f032690e55550 /platform/macos/export/export_plugin.h
parentd342df79d5f31ae4f3e315cd6a6dcb3f2c481f8a (diff)
parentc34192eb9ce4cec5c48cee19e986f4582edf487f (diff)
downloadredot-engine-693b69d65fd525d275adb64e22a4382dffcd216e.tar.gz
Merge pull request #94677 from bruvzg/no_sign_err
[macOS export] Do not stop export on signing errors.
Diffstat (limited to 'platform/macos/export/export_plugin.h')
-rw-r--r--platform/macos/export/export_plugin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/macos/export/export_plugin.h b/platform/macos/export/export_plugin.h
index 1929fc8d5f..062a2e5f95 100644
--- a/platform/macos/export/export_plugin.h
+++ b/platform/macos/export/export_plugin.h
@@ -90,8 +90,8 @@ class EditorExportPlatformMacOS : public EditorExportPlatform {
void _make_icon(const Ref<EditorExportPreset> &p_preset, const Ref<Image> &p_icon, Vector<uint8_t> &p_data);
Error _notarize(const Ref<EditorExportPreset> &p_preset, const String &p_path);
- Error _code_sign(const Ref<EditorExportPreset> &p_preset, const String &p_path, const String &p_ent_path, bool p_warn = true, bool p_set_id = false);
- Error _code_sign_directory(const Ref<EditorExportPreset> &p_preset, const String &p_path, const String &p_ent_path, const String &p_helper_ent_path, bool p_should_error_on_non_code = true);
+ void _code_sign(const Ref<EditorExportPreset> &p_preset, const String &p_path, const String &p_ent_path, bool p_warn = true, bool p_set_id = false);
+ void _code_sign_directory(const Ref<EditorExportPreset> &p_preset, const String &p_path, const String &p_ent_path, const String &p_helper_ent_path, bool p_should_error_on_non_code = true);
Error _copy_and_sign_files(Ref<DirAccess> &dir_access, const String &p_src_path, const String &p_in_app_path,
bool p_sign_enabled, const Ref<EditorExportPreset> &p_preset, const String &p_ent_path, const String &p_helper_ent_path,
bool p_should_error_on_non_code_sign, bool p_sandbox);