We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d879b18 commit e59e188Copy full SHA for e59e188
1 file changed
tools/clangrttool/clangrttool.py
@@ -135,7 +135,7 @@ def run(self):
135
if "DEVELOPER_DIR" in os.environ:
136
clang_lib_path = normalize_clang_lip_path(clang_lib_path, os.environ["DEVELOPER_DIR"])
137
138
- with zipfile.ZipFile(out_path, "w") as out_zip:
+ with zipfile.ZipFile(out_path, "w", strict_timestamps=False) as out_zip:
139
for lib in clang_libraries:
140
full_path = os.path.join(clang_lib_path, lib)
141
if os.path.exists(full_path):
0 commit comments