Skip to content

Commit ea40372

Browse files
committed
try to fix stupidity, again
1 parent 383d8b2 commit ea40372

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

root-module-manual/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ def copy_file_to_src(file_path, library_name):
117117

118118
def zip_src_files():
119119
"""
120-
Zips all files in the 'src/' directory into 'btl2capfix.zip', preserving symlinks.
121-
"""
122-
with zipfile.ZipFile('btl2capfix.zip', 'w', zipfile.ZIP_DEFLATED, allowZip64=True) as zipf:
120+
Zips all files in the 'src/' directory into 'btl2capfix.zip', preserving symlinks without compression.
121+
"""
122+
with zipfile.ZipFile('btl2capfix.zip', 'w', zipfile.ZIP_STORED, allowZip64=True) as zipf:
123123
for root, dirs, files in os.walk('src/'):
124124
for file in files:
125125
file_path = os.path.join(root, file)

0 commit comments

Comments
 (0)