Skip to content

Commit 70a6bf7

Browse files
committed
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
1 parent 4d52209 commit 70a6bf7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

scripts/migrate.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,8 @@ migrate_content() {
191191
mkdir -p "$dest"
192192

193193
# Copy with progress
194-
rsync --info=progress2 -aHv "$source" "$dest"
194+
echo "Copying files..."
195+
rsync --info=progress2 -aH "$source" "$dest"
195196

196197
echo ""
197198
echo "Setting permissions for Ghost container (UID: $GHOST_UID, GID: $GHOST_GID)..."

0 commit comments

Comments
 (0)