From 882618f2a88a3ad754f8ac224cffd995722fc0fc Mon Sep 17 00:00:00 2001 From: Eu Pin Tien Date: Fri, 10 Jan 2025 14:40:29 +0000 Subject: [PATCH] Fixed rsync command verbosity level; it should now include skipped files in its output --- src/murfey/client/rsync.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/murfey/client/rsync.py b/src/murfey/client/rsync.py index 80e1c99a6..5be764cbc 100644 --- a/src/murfey/client/rsync.py +++ b/src/murfey/client/rsync.py @@ -422,14 +422,14 @@ def parse_stderr(line: str): # rsync default settings rsync_cmd = [ "rsync", - "-iiv", + "-ivv", # Second -v displays skipped files "--times", "--progress", "--outbuf=line", "--files-from=-", # '-' indicates reading from standard input # Needed as a pair to trigger permission modifications # Ref: https://serverfault.com/a/796341 - "-p", + "--perms", "--chmod=D0750,F0750", # Use extended chmod format ] # Add file locations