From 14ce936e9b176ca2f374bc4b011159af7484f2f9 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 25 Apr 2026 09:15:38 -0700 Subject: [PATCH] Promote update-shared2 to be the new default. --- rc_shared.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/rc_shared.sh b/rc_shared.sh index 6b6cecb..114db42 100644 --- a/rc_shared.sh +++ b/rc_shared.sh @@ -65,7 +65,7 @@ if [[ -z "$branch" ]]; then branch="dev" fi -function update-shared { +function update-shared-old { log "`date` - Reloading the '~/.rc_shared' file from env-shared.\n" if [[ -n "$1" ]]; then @@ -100,9 +100,6 @@ function update-shared { log "\n`date` - Complete!" } -alias shared-update="update-shared" -alias reload-shared="update-shared" -alias shared-reload="update-shared" project="$HOME/.env-shared" function update-shared2 { @@ -139,6 +136,11 @@ alias shared-update2="update-shared2" alias reload-shared2="update-shared2" alias shared-reload2="update-shared2" +alias update-shared="update-shared2" +alias shared-update="update-shared" +alias reload-shared="update-shared" +alias shared-reload="update-shared" + # Shortcuts # function send-master { send_master.sh; }