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
This commit is contained in:
James Loh
2025-07-09 15:45:56 +10:00
parent 8411a38ccc
commit c18cc88f7f

View File

@@ -191,7 +191,8 @@ migrate_content() {
mkdir -p "$dest" mkdir -p "$dest"
# Copy with progress # Copy with progress
rsync --info=progress2 -aHv "$source" "$dest" echo "Copying files..."
rsync --info=progress2 -aH "$source" "$dest"
echo "" echo ""
echo "Setting permissions for Ghost container (UID: $GHOST_UID, GID: $GHOST_GID)..." echo "Setting permissions for Ghost container (UID: $GHOST_UID, GID: $GHOST_GID)..."