summaryrefslogtreecommitdiffstats
path: root/editor/export/editor_export_platform.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/export/editor_export_platform.cpp')
-rw-r--r--editor/export/editor_export_platform.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/export/editor_export_platform.cpp b/editor/export/editor_export_platform.cpp
index 9a0d84d751..855d610d72 100644
--- a/editor/export/editor_export_platform.cpp
+++ b/editor/export/editor_export_platform.cpp
@@ -901,7 +901,7 @@ Vector<String> EditorExportPlatform::get_forced_export_files() {
if (FileAccess::exists(abs_path)) {
files.push_back(ts_data);
// Remove the file later.
- MessageQueue::get_singleton()->push_callable(callable_mp_static(DirAccess::remove_absolute), abs_path);
+ callable_mp_static(DirAccess::remove_absolute).call_deferred(abs_path);
}
}
}