From 5cdb4261673a8f7872c9441122b0fb93f5e3a3e1 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Fri, 3 Jul 2026 12:49:43 -0700 Subject: [PATCH] Add output regarding how the folder is being pushed. --- rc_shared.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rc_shared.sh b/rc_shared.sh index 517ed21..034b6d4 100644 --- a/rc_shared.sh +++ b/rc_shared.sh @@ -257,8 +257,10 @@ function pull { function push { if [[ -d .git ]]; then + echo "Recognized git project, promoting branch to stage and prod." git push && eval load-stage && eval load-prod else + echo "Not a git repo, attempting to sync to SFTP server." send-master fi }