1
0
Fork 0
mirror of synced 2024-05-16 18:33:53 +12:00
budibase/scripts/pro/build.sh

15 lines
343 B
Bash
Executable file

#!/bin/bash
# This script is designed for building the pro repo after the backend-core build has completed.
# This ensures that any changes in core that are required by pro are done in the correct order.
set -e
# Go to parent of budibase
cd ../../../
if [[ -d "budibase-pro" ]]; then
cd budibase-pro
echo "Building pro"
yarn build
fi