Skip to content

Commit e59d773

Browse files
committed
Add --exclude='*' to last option for metadata rsync instead of in config
1 parent b83542d commit e59d773

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ sequencers:
107107
remote_rsync_options:
108108
- --chmod=Dg+s,g+rw
109109
metadata_rsync_options:
110-
- "--exclude='*'"
111110
- "--include=InterOp"
112111
# ... additional sequencer configurations
113112
```

dataflow_transfer/run_classes/generic_runs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ def generate_rsync_command(self, remote=False, with_exit_code_file=False):
107107
"-au",
108108
log_file_option,
109109
*(rsync_options),
110+
"--exclude='*'" if not remote else "",
110111
source,
111112
destination,
112113
]

0 commit comments

Comments
 (0)