We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 383d8b2 commit ea40372Copy full SHA for ea40372
root-module-manual/main.py
@@ -117,9 +117,9 @@ def copy_file_to_src(file_path, library_name):
117
118
def zip_src_files():
119
"""
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:
+ Zips all files in the 'src/' directory into 'btl2capfix.zip', preserving symlinks without compression.
+ """
+ with zipfile.ZipFile('btl2capfix.zip', 'w', zipfile.ZIP_STORED, allowZip64=True) as zipf:
123
for root, dirs, files in os.walk('src/'):
124
for file in files:
125
file_path = os.path.join(root, file)
0 commit comments