diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-07-24 09:59:38 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-07-24 09:59:38 +0200 |
commit | 693b69d65fd525d275adb64e22a4382dffcd216e (patch) | |
tree | b871311361a96b93e4906626e45f032690e55550 /platform/macos/export/export_plugin.h | |
parent | d342df79d5f31ae4f3e315cd6a6dcb3f2c481f8a (diff) | |
parent | c34192eb9ce4cec5c48cee19e986f4582edf487f (diff) | |
download | redot-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.h | 4 |
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); |