Merge pull request #67252 from zaevi/web_fix_export_file_locked

[Web] Fix file locked issue when exporting to Web.
This commit is contained in:
Rémi Verschelde 2022-10-12 14:44:32 +02:00
commit 06dc4648bf
1 changed files with 1 additions and 0 deletions

View File

@ -485,6 +485,7 @@ Error EditorExportPlatformWeb::export_project(const Ref<EditorExportPreset> &p_p
}
html.resize(f->get_length());
f->get_buffer(html.ptrw(), html.size());
f.unref(); // close file.
// Generate HTML file with replaced strings.
_fix_html(html, p_preset, base_name, p_debug, p_flags, shared_objects, file_sizes);