mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
Merge pull request #100103 from Summersay415/idsig
Android: Delete `.idsig` on One Click Deploy
This commit is contained in:
commit
d15e559355
1 changed files with 8 additions and 5 deletions
|
@ -2148,6 +2148,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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue