-
Notifications
You must be signed in to change notification settings - Fork 375
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All unzipped files are empty. #538
Comments
+1 |
Been facing the same issue on linux |
Please share your code snippet or replication step. |
Hello, I encountered this issue. It works correctly in version Replacing the promises resolves the problem in version - await zip.addLocalFolderPromise(directory);
- await zip.writeZipPromise(filename);
+ zip.addLocalFolder(directory);
+ zip.writeZip(filename); You can reproduce this issue by cloning the referenced |
All unzipped files are empty (size is 0 KB) without errors. I'm using Windows 10. It worked before with v0.5.10. I also tried v0.5.14 and v0.5.16.
The text was updated successfully, but these errors were encountered: