1
0
Fork 0
mirror of synced 2024-06-29 19:41:03 +12:00

Skip pro install on community forks

This commit is contained in:
Rory Powell 2022-04-22 11:45:45 +01:00
parent 3071ab83b6
commit 8a711cb736

View file

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