From 074f0a29bffc65f9a6cbafcf71b1dd29229f2498 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Wed, 1 Apr 2026 08:45:19 -0700 Subject: [PATCH] Explicitly note in sync-all that SYNC folders are not being handled. --- rc_shared.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/rc_shared.sh b/rc_shared.sh index 13f5e19..3ad42df 100644 --- a/rc_shared.sh +++ b/rc_shared.sh @@ -129,7 +129,18 @@ function pull-clones { alias get-clones="pull-clones" alias sync-clones="pull-clones" -function sync-all { push-masters; pull-clones; } +function sync-all { + push-masters + echo -e "\n" + pull-clones + + echo -e "\n`date` - Skipping SYNC folders! Please do their loads separately." + ls | grep "\-SYNC" | while read dir; do + echo "- $dir" + done + + echo -e "`date` - \nDone." +} # SYNC folders.