From ecdb3274a0302074b101dbe06466ba03d102bcc4 Mon Sep 17 00:00:00 2001 From: Pascal Andy Date: Fri, 29 Apr 2022 21:14:19 -0400 Subject: [PATCH] Add 2 sec delay when we check for the latest tag during the release --- bashlava.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bashlava.sh b/bashlava.sh index c93b8a4..a2d42bf 100755 --- a/bashlava.sh +++ b/bashlava.sh @@ -20,12 +20,12 @@ function edge { App_Is_required_apps_installed # delete branch - git branch -D edge || true &&\ + git branch -D edge || true # delete branch so there is no need to use the github GUI to delete it - git push origin --delete edge || true &&\ + git push origin --delete edge || true - git checkout -b edge &&\ - git push --set-upstream origin edge -f &&\ + git checkout -b edge + git push --set-upstream origin edge -f my_message=" was freshly branched out from ${default_branch}" App_Blue } @@ -124,7 +124,7 @@ function tag { my_message="To quit the release notes: type ':qa + enter'" App_Warning && echo && sleep 1 gh release create &&\ - App_Show_version &&\ + App_Show_version && sleep 2 App_Show_release }