From 4e08e1055e01a186ddc8514bf1da4288562866c5 Mon Sep 17 00:00:00 2001 From: "sigonasr2, Sig, Sigo" Date: Wed, 29 Jun 2022 12:55:19 -0500 Subject: [PATCH] Update build.sh --- C/scripts/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/C/scripts/build.sh b/C/scripts/build.sh index c83e08c..654271e 100644 --- a/C/scripts/build.sh +++ b/C/scripts/build.sh @@ -1,5 +1,7 @@ #Compiles the entire program then runs it, producing an executable. #C +printf "Running program...\n\n\n" if gcc $(find . -type f -name "*.c") ${CUSTOM_PARAMS} -o ${PROJECT_NAME}; then ./${PROJECT_NAME} -fi \ No newline at end of file +fi +printf "\n\n"