From 8919af6b4b3b44e9565ab2024b72839a1066d592 Mon Sep 17 00:00:00 2001 From: Mike Rushton Date: Sat, 13 Apr 2024 11:47:56 -0400 Subject: [PATCH] clean up logged messages a bit --- deploy-staging.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy-staging.sh b/deploy-staging.sh index d061ce3..349400b 100755 --- a/deploy-staging.sh +++ b/deploy-staging.sh @@ -36,8 +36,8 @@ while true; do else echo -e "We are not running the lastest successful merge\nChecking out ${latest_remote_merge_commit}" cd ${staging_dir} - git pull --all - git checkout ${latest_remote_merge_commit} >/dev/null 2>&1 + git pull --all --quiet + git checkout ${latest_remote_merge_commit} --quiet fi echo "Checking again in 1 minute..."