From bfb389908f742e63a157e4cc5c5bf4d1f940452d Mon Sep 17 00:00:00 2001 From: Mel O'Hagan Date: Tue, 4 Oct 2022 14:50:21 +0100 Subject: [PATCH] Fallback --- scripts/pro/install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/pro/install.sh b/scripts/pro/install.sh index 6a388dc190..781ecd8caa 100755 --- a/scripts/pro/install.sh +++ b/scripts/pro/install.sh @@ -18,6 +18,10 @@ git clone https://$PERSONAL_ACCESS_TOKEN@github.com/Budibase/budibase-pro.git if [[ -d "budibase-pro" ]]; then cd budibase-pro + if [[ -z "${BRANCH}" ]]; then + export BRANCH=$GITHUB_REF_NAME + fi + # Try to checkout the matching pro branch git checkout $BRANCH