From abc56b57cd631d90446f73f11a4a9beeefdb67e1 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 23 Mar 2026 12:17:20 -0700 Subject: [PATCH] Add loading the shared RC config if it exists. --- bashrc.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bashrc.sh b/bashrc.sh index 9e8508e..904719b 100644 --- a/bashrc.sh +++ b/bashrc.sh @@ -549,6 +549,10 @@ alias prod-backup="pull_prod_backups" alias pull-prod="pull_prod_backups" alias prod-pull="pull_prod_backups" +if [ -f ~/.rc_shared ]; then + . ~/.rc_shared +fi + # Complete! PROG="$(basename -- "${BASH_SOURCE[0]}")" echo "'$PROG' completed!"