Don't exclude hidden files in the zips, as the .qortal folder needs to be included.

This commit is contained in:
CalDescent 2021-08-15 17:45:37 +01:00
parent 9850c294d1
commit f5615b1c54

View File

@ -48,9 +48,6 @@ public class ZipUtils {
}
public static void zip(final File fileToZip, final String fileName, final ZipOutputStream zipOut) throws IOException {
if (fileToZip.isHidden()) {
return;
}
if (fileToZip.isDirectory()) {
if (fileName.endsWith("/")) {
zipOut.putNextEntry(new ZipEntry(fileName));