mirror of
https://github.com/facebookresearch/blt.git
synced 2025-04-08 02:39:09 +00:00
Fix rsync to not preserve original permissions, instead use destination
Summary: Test Plan:
This commit is contained in:
parent
c727844e9d
commit
44668ef966
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ def copy_dir(input_dir: str, output_dir: str) -> None:
|
|||
assert os.path.isdir(input_dir), f"{input_dir} is not a directory"
|
||||
assert os.path.isdir(output_dir), f"{output_dir} is not a directory"
|
||||
rsync_cmd = (
|
||||
f"rsync -arm --copy-links "
|
||||
f"rsync -rmt --copy-links "
|
||||
f"--include '**/' "
|
||||
f"--include '*.py' "
|
||||
f"--exclude='*' "
|
||||
|
|
Loading…
Add table
Reference in a new issue