Use -mx7 by default for 7z archives.

This commit is contained in:
Aleksey Khoroshilov
2022-11-07 12:54:30 +07:00
parent dbc7d28167
commit 43eaee3eb8
+1 -1
View File
@@ -164,7 +164,7 @@ def make_zip(zip_file_path, files, dirs):
def make_7z(archive_file_path, files, dirs):
safe_unlink(archive_file_path)
files += dirs
execute([get_lzma_exec(), 'a', '-t7z', archive_file_path] + files)
execute([get_lzma_exec(), 'a', '-t7z', '-mx7', archive_file_path] + files)
def rm_rf(path):