From 74d727faa92baf7f3077bce92d095515cbabebfc Mon Sep 17 00:00:00 2001 From: Hyperling Date: Fri, 17 Apr 2026 16:17:03 -0700 Subject: [PATCH] Fix output for both update shared functions. --- rc_shared.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rc_shared.sh b/rc_shared.sh index f2597ef..e23a277 100644 --- a/rc_shared.sh +++ b/rc_shared.sh @@ -98,7 +98,7 @@ function update-shared { log "\n`date` - Done! Removing git clone.\n" mv -v $dir ~/TRASH/"$dir-`date "+%Y%m%d-%H%M%S"`" - log "\n`date` - Complete! Please note this does NOT update bin files." + log "\n`date` - Complete!" } alias shared-update="update-shared" alias reload-shared="update-shared" @@ -132,6 +132,8 @@ function update-shared2 { else echo "Did not find '$local_bin', did not copy scripts." fi + + log "\n`date` - Complete!" } alias shared-update2="update-shared2" alias reload-shared2="update-shared2" @@ -139,7 +141,7 @@ alias shared-reload2="update-shared2" ( if [[ -d $project ]]; then git -C $project fetch >/dev/null 2>&1 && git -C $project status | grep "is behind" \ | while read status; do - log "\n\n`date` - Updates to env-shared are available via update-shared2." + log "\n\n`date` - Updates to env-shared are available via 'update-shared2'." #log ": '$status'" done fi & )