From fcae4b7a3034fba12c1f297c0a4dd44f98417952 Mon Sep 17 00:00:00 2001 From: Mike Rushton Date: Sat, 13 Apr 2024 10:25:21 -0400 Subject: [PATCH] set back to 1 minute from debugging --- deploy-staging.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy-staging.sh b/deploy-staging.sh index 9ad0258..da3b2a5 100755 --- a/deploy-staging.sh +++ b/deploy-staging.sh @@ -32,9 +32,10 @@ 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 git checkout ${latest_remote_merge_commit} >/dev/null 2>&1 fi echo "Checking again in 1 minute..." - sleep 10 + sleep 60 done