Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffxy committed Dec 24, 2024
1 parent 7371bf9 commit 8883771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/conductor/utils/output_archiving.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,6 @@ def _supports_compress_program(archive_type: ArchiveType) -> bool:
if archive_type == ArchiveType.Zstd:
return system == "Linux"
elif archive_type == ArchiveType.Gzip:
return system == "Darwin"
return system == "Linux" or system == "Darwin"
else:
return False

0 comments on commit 8883771

Please sign in to comment.