diff --git a/editor/export_template_manager.cpp b/editor/export_template_manager.cpp index ca64447559d..25325adb253 100644 --- a/editor/export_template_manager.cpp +++ b/editor/export_template_manager.cpp @@ -226,7 +226,10 @@ void ExportTemplateManager::_install_from_file(const String &p_file, bool p_use_ version = data_str; } - fc++; + if (file.get_file().size() != 0) { + fc++; + } + ret = unzGoToNextFile(pkg); } @@ -266,6 +269,11 @@ void ExportTemplateManager::_install_from_file(const String &p_file, bool p_use_ String file = String(fname).get_file(); + if (file.size() == 0) { + ret = unzGoToNextFile(pkg); + continue; + } + Vector data; data.resize(info.uncompressed_size);