-
-
Notifications
You must be signed in to change notification settings - Fork 52
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
Cannot create zip archives with 7-Zip 23.01 installed #502
Comments
The |
Also affects Debian, engrampa 1.26.1-2 and 7zip 23.01+dfsg-7 |
The name of the
|
@NinjaCowboy Why does the
|
@NinjaCowboy Can we close this issue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Expected behaviour
Engrampa should be able to create zip files from Caja's context menu or the command-line.
Actual behaviour
Attempting to do so results in an error popup saying "An error occurred while adding files to the archive.".
Steps to reproduce the behaviour
engrampa -a test.zip hello.txt
MATE general version
1.26.1
Package version
engrampa-1.26.1_1
Linux Distribution
Void Linux
Link to bugreport of your Distribution (requirement)
Additional Information
This appears to be caused by engrampa passing an invalid
-l
switch to 7z. Running strace (strace -f -e trace=execve -s 200 engrampa -a test.zip hello.txt
) reveals that engrampa passes the-l
switch to 7z, which doesn't seem to be available (at least not in this version).Running
/usr/bin/7z a -tzip -mem=AES128 -bd -y -l -mx=7 -- /home/ninja/test.zip hello.txt
gives an error.The output of
7z --help
on my system does not mention the-l
switch at all, but it is mentioned in some online manpages.The text was updated successfully, but these errors were encountered: