nelle-observer/build.sh

37 lines
1 KiB
Bash
Raw Normal View History

2024-09-15 19:51:50 -06:00
#!/bin/bash
2024-09-15 20:09:45 -06:00
read -p "build the frontend? Yes(y) / No(n) / Cancel(c):- " choice
if [ "$choice" = "y" ]; then
echo "building static site!"
pnpm i
pnpm run build
read -p "build the backend? Yes(y) / No(n) / Cancel(c):- " choice
if [ "$choice" = "y" ]; then
echo "building backend!"
cd backend
./gradlew shadowJar
elif [ "$choice" = "n" ]; then
echo "exiting..."
elif [ "$choice" = "c" ]; then
echo "build cancelled"
else
echo "no choice given, exiting..."
fi
elif [ "$choice" = "n" ]; then
read -p "build the backend? Yes(y) / No(n) / Cancel(c):- " choice
if [ "$choice" = "y" ]; then
echo "building backend!"
cd backend
./gradlew shadowJar
elif [ "$choice" = "n" ]; then
echo "exiting..."
elif [ "$choice" = "c" ]; then
echo "build cancelled"
else
echo "no choice given, exiting..."
fi
elif [ "$choice" = "c" ]; then
echo "Installation cancelled"
else
echo "No Choice given, exiting..."
fi