1
0
Fork 0
mirror of synced 2024-08-11 16:12:19 +12:00

Merge pull request #5536 from Budibase/pro-build-fixes

Skip pro install on community forks
This commit is contained in:
Rory Powell 2022-04-22 11:46:28 +01:00 committed by GitHub
commit 7046902d8a

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
if [[ -z "${CI}" ]]; then if [[ -z "${CI}" ]] then
echo 'Cannot run insall.sh unless in CI' echo 'Cannot run insall.sh unless in CI'
exit 0 exit 0
fi fi
@ -11,14 +11,21 @@ BASE_BRANCH=$2
cd ../ cd ../
echo "Cloning pro repo..." echo "Cloning pro repo..."
git clone https://$PERSONAL_ACCESS_TOKEN@github.com/Budibase/budibase-pro.git git clone https://$PERSONAL_ACCESS_TOKEN@github.com/Budibase/budibase-pro.git
cd budibase-pro
# Try to checkout the matching pro branch # Community forks won't be able to clone the pro repo as they can't access secrets
git checkout $BRANCH # Skip the rest of the installation and rely on npm version instead
# Try to checkout the matching pro base (master or develop) branch # This should be ok as forks will not rely on pro changes
git checkout $BASE_BRANCH if [ -d "budibase-pro" ]
# If neither branch exists continue with default branch 'develop' then
git pull cd budibase-pro
echo "Initializing pro repo..." # Try to checkout the matching pro branch
yarn setup git checkout $BRANCH
# Try to checkout the matching pro base (master or develop) branch
git checkout $BASE_BRANCH
# If neither branch exists continue with default branch 'develop'
git pull
echo "Initializing pro repo..."
yarn setup
fi