From f9f2bbf9789e9559ce55db2b394f124904852694 Mon Sep 17 00:00:00 2001 From: limepotato Date: Mon, 16 Sep 2024 01:36:07 -0600 Subject: [PATCH] oops --- build.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 4e21cfa..4c27883 100755 --- a/build.sh +++ b/build.sh @@ -19,6 +19,7 @@ EXITING="${RED}exiting...${RESET}" NO_CHOICE="${RED}no choice given, exiting...${RESET}" BUILD_CANCELLED="${YELLOW}canelling build...${RESET}" BUILDING_BACK="${PURPLE}building backend!${RESET}" +IMPREGNATING="${PURPLE}preparing backend...${RESET}" BUILDING_FRONT="${PURPLE}building static site!${RESET}" FIRST_TIME_Q="${CYAN}first time building backend? ${GREEN}Yes(y) ${RESET}/ ${RED}No(n) ${RESET}/ ${YELLOW}Cancel(c)${RESET}:- " @@ -33,11 +34,12 @@ if [ "$choice" = "y" ]; then if [ "$choice" = "y" ]; then read -p "$(echo -e ${FIRST_TIME_Q})" choice if [ "$choice" = "y" ]; then - echo -e "${BUILDING_BACK}}" + echo -e "${IMPREGNATING}}" cd backend mkdir build mkdir build/libs cp application.yaml build/libs + cd ../ elif [ "$choice" = "n" ]; then echo -e "${EXITING}" elif [ "$choice" = "c" ]; then @@ -62,11 +64,12 @@ elif [ "$choice" = "n" ]; then if [ "$choice" = "y" ]; then read -p "$(echo -e ${FIRST_TIME_Q})" choice if [ "$choice" = "y" ]; then - echo -e "${BUILDING_BACK}}" + echo -e "${IMPREGNATING}}" cd backend mkdir build mkdir build/libs cp application.yaml build/libs + cd ../ elif [ "$choice" = "n" ]; then echo -e "${EXITING}" elif [ "$choice" = "c" ]; then