1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-13 13:31:48 +00:00

Delete .idsig on One Click Deploy

This commit is contained in:
Summersay415
2024-12-06 21:41:03 +07:00
parent eb5103093c
commit 3d8ecc452a

View File

@@ -2090,6 +2090,9 @@ Error EditorExportPlatformAndroid::run(const Ref<EditorExportPreset> &p_preset,
#define CLEANUP_AND_RETURN(m_err) \ #define CLEANUP_AND_RETURN(m_err) \
{ \ { \
DirAccess::remove_file_or_error(tmp_export_path); \ DirAccess::remove_file_or_error(tmp_export_path); \
if (FileAccess::exists(tmp_export_path + ".idsig")) { \
DirAccess::remove_file_or_error(tmp_export_path + ".idsig"); \
} \
return m_err; \ return m_err; \
} \ } \
((void)0) ((void)0)