From 5351df572b51097bf0feca476428cb85353f5b4e Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 30 Mar 2026 11:25:11 -0700 Subject: [PATCH] Change where the newline is so each clone is in its own log section. --- rc_shared.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc_shared.sh b/rc_shared.sh index 363d058..f65be72 100644 --- a/rc_shared.sh +++ b/rc_shared.sh @@ -96,9 +96,9 @@ function send-masters { } function pull-clones { - echo -e "`date` - Looping through clone directories.\n" + echo -e "`date` - Looping through clone directories." ls | grep '\-clone' | while read dir; do - echo -e "`date` - Found '$dir'..." + echo -e "\n`date` - Found '$dir'..." cd $dir pull-clone cd ..