Skip to content

Commit 83888f8

Browse files
committed
Fix(aws): Ensure we don't upload round logs
1 parent a0c086d commit 83888f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codeclash/utils/aws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def s3_log_sync(local_output_dir: Path, *, logger: Logger) -> None:
9292
logger.debug(f"Syncing {local_output_dir} to {s3_path}")
9393

9494
result = subprocess.run(
95-
["aws", "s3", "sync", str(local_output_dir), s3_path, "--exclude", "*/rounds/*"],
95+
["aws", "s3", "sync", str(local_output_dir), s3_path, "--exclude", "rounds", "--exclude", "*/rounds"],
9696
capture_output=True,
9797
text=True,
9898
)

0 commit comments

Comments
 (0)