Skip to content

Commit

Permalink
More readable rsync commands (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvizeli authored Mar 23, 2020
1 parent 45f3399 commit 373fc5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/upload/rsync.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
def upload(local: Path, remote: str) -> None:
"""Upload wheels from folder to remote rsync server."""
subprocess.run(
f"rsync -chrP {local}/* {remote}/",
f"rsync --human-readable --recursive --partial --progress --checksum {local}/* {remote}/",
shell=True,
check=True,
stdout=sys.stdout,
Expand Down

0 comments on commit 373fc5d

Please sign in to comment.