Skip to content

Commit 882618f

Browse files
committed
Fixed rsync command verbosity level; it should now include skipped files in its output
1 parent 4a8210a commit 882618f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/murfey/client/rsync.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,14 +422,14 @@ def parse_stderr(line: str):
422422
# rsync default settings
423423
rsync_cmd = [
424424
"rsync",
425-
"-iiv",
425+
"-ivv", # Second -v displays skipped files
426426
"--times",
427427
"--progress",
428428
"--outbuf=line",
429429
"--files-from=-", # '-' indicates reading from standard input
430430
# Needed as a pair to trigger permission modifications
431431
# Ref: https://serverfault.com/a/796341
432-
"-p",
432+
"--perms",
433433
"--chmod=D0750,F0750", # Use extended chmod format
434434
]
435435
# Add file locations

0 commit comments

Comments
 (0)