Ignore errors when trying to copy the original file's stats

This commit is contained in:
Trenton H 2023-06-21 07:33:56 -07:00
parent 59d683849e
commit 1c66daf12b

View File

@ -582,7 +582,12 @@ class Consumer(LoggingMixin):
def _write(self, storage_type, source, target):
with open(source, "rb") as read_file, open(target, "wb") as write_file:
write_file.write(read_file.read())
shutil.copystat(source, target)
# Attempt to copy file's original stats, but it's ok if we can't
try:
shutil.copystat(source, target)
except Exception: # pragma: no cover
pass
def _log_script_outputs(self, completed_process: CompletedProcess):
"""