We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0c086d commit 83888f8Copy full SHA for 83888f8
1 file changed
codeclash/utils/aws.py
@@ -92,7 +92,7 @@ def s3_log_sync(local_output_dir: Path, *, logger: Logger) -> None:
92
logger.debug(f"Syncing {local_output_dir} to {s3_path}")
93
94
result = subprocess.run(
95
- ["aws", "s3", "sync", str(local_output_dir), s3_path, "--exclude", "*/rounds/*"],
+ ["aws", "s3", "sync", str(local_output_dir), s3_path, "--exclude", "rounds", "--exclude", "*/rounds"],
96
capture_output=True,
97
text=True,
98
)
0 commit comments