From b31d0756d927a83e7d1081c2030be4ba713561ab Mon Sep 17 00:00:00 2001 From: schmeeve Date: Thu, 11 Jun 2026 16:08:12 -0700 Subject: [PATCH] don't go recursively into folders --- sync-pictures | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync-pictures b/sync-pictures index b98976d..56c0490 100755 --- a/sync-pictures +++ b/sync-pictures @@ -55,7 +55,7 @@ fi # 2. One-way rsync contents of ~/Pictures → share subpath MP="${MOUNTPOINT}/${SUBPATH}" echo "[sync-pictures] Syncing ${SOURCE}/ → ${MP}/" -rsync -vrau \ +rsync -vu --exclude='*/' \ "${SOURCE}/" \ "${MP}/" \ --progress --stats \