summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rwxr-xr-xutils/gen_fast_manifest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/gen_fast_manifest.py b/utils/gen_fast_manifest.py
index ccba791..049761f 100755
--- a/utils/gen_fast_manifest.py
+++ b/utils/gen_fast_manifest.py
@@ -107,7 +107,7 @@ def gen_manifest(top_dir):
manifest_data = b'\n'.join(manifest_entries) + b'\n'
if len(manifest_data) > 4096 and not compat_mode:
- with gzip.GzipFile(os.path.join(top_dir, 'Manifest.gz'), 'wb') as f:
+ with gzip.GzipFile(os.path.join(top_dir, 'Manifest.gz'), 'wb', mtime=0) as f:
f.write(manifest_data)
if had_manifest:
os.unlink(os.path.join(top_dir, 'Manifest'))