Skip to content

Commit e59e188

Browse files
authored
Disable strict timestamps for output ZIP archive in clangrttool.py (#2887)
Closes #2886
1 parent d879b18 commit e59e188

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/clangrttool/clangrttool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def run(self):
135135
if "DEVELOPER_DIR" in os.environ:
136136
clang_lib_path = normalize_clang_lip_path(clang_lib_path, os.environ["DEVELOPER_DIR"])
137137

138-
with zipfile.ZipFile(out_path, "w") as out_zip:
138+
with zipfile.ZipFile(out_path, "w", strict_timestamps=False) as out_zip:
139139
for lib in clang_libraries:
140140
full_path = os.path.join(clang_lib_path, lib)
141141
if os.path.exists(full_path):

0 commit comments

Comments
 (0)