-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Unsupported zip version #42
Comments
Hi @1Map , |
Sample zip to reproduce the issue: zip-78_8_not_supported.zip Snippet for extraction: createReadStream('/tmp/zip-78_8_not_supported.zip')
.pipe(Parse())
.on('entry', (entry: Entry) => {
if (entry.type === 'Directory' || entry.path.startsWith('__MACOSX/') || entry.path.endsWith('.DS_Store')) {
entry.autodrain();
return;
}
console.log(`${entry.type} ${entry.path}`);
entry.autodrain();
}).on('close', () => console.log('done')); Output:
|
This is now more than a year, and still getting this error |
This repository, like many other OSS projects may not have any sponsorship / funding. Someone would need to contribute to this out of their own goodwill or their paid work would need to allow for a contribution to this. |
I get error like:
The text was updated successfully, but these errors were encountered: