-
Notifications
You must be signed in to change notification settings - Fork 24
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
OSX Archive Utility: Error 1 - Operation not permitted #9
Comments
I've seen this only on the streaming branch. Master opens my files fine in archive utility. |
I also received this error. Unzips fine from command line but archive utility complains that it is unable to unzip. Using the pull request with zlib compression fixed it for me (#3), I suspect it is some ascii character that is tripping up archive and the compression technique encodes it to something friendlier. |
I'm also getting this error from latest on npm. I did as @CoolBlade did and used the fork that he used and the unzipping works great. I'm running node v0.8.19. |
When I use that fork, I get a TypeError inside of the |
Nick, is it saying something about a callback in the stack? If so, thats the issue. I'm using his fork with great results on androidbootstrap.com. You can check out the source in this file: https://github.com/donnfelker/android-bootstrap-site/blob/master/routes/generate.js#L73 Instead of just getting a buffer you have to provide a callback. See the code above for a working example. Cheers |
I'm experiencing this issue as well in 1.1.0. |
yes, I have this issue too, and I tried other libs, like adm-zip, they'll have the same issue. |
bump |
++ |
I got the same error, finally, it works with onkis's version. the only difference is that the part of writting .zip file should be put into the callback of .toBuffer method. |
After assessing all other libraries out there, I've seen that this lib has been superseded by other, nicer libraries, more specifically node-archiver. Which would solve stuff like this. Sorry for that :-) |
I've published the fork by onkis as node-native-zip-compression to npm, it solves this issue |
Hi, this seems to be the same issue as reported for PHPZip here:
Grandt/PHPZip#4
From the discusion:
Has anyone else encountered this?
The text was updated successfully, but these errors were encountered: