From c18cc88f7fb254a259558aff41f757f6720fdbb1 Mon Sep 17 00:00:00 2001 From: James Loh Date: Wed, 9 Jul 2025 15:45:56 +1000 Subject: [PATCH] Make rsync progress quieter no ref - rsync will print us out a nice progress screen if we lower the verbosity which is nicer than outputting all of the files we're moving --- scripts/migrate.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/migrate.sh b/scripts/migrate.sh index b9dfcaf..f342be6 100644 --- a/scripts/migrate.sh +++ b/scripts/migrate.sh @@ -191,7 +191,8 @@ migrate_content() { mkdir -p "$dest" # Copy with progress - rsync --info=progress2 -aHv "$source" "$dest" + echo "Copying files..." + rsync --info=progress2 -aH "$source" "$dest" echo "" echo "Setting permissions for Ghost container (UID: $GHOST_UID, GID: $GHOST_GID)..."