From bacda4cd00055f21931dae1f3154f9525402935a Mon Sep 17 00:00:00 2001 From: ThoNohT Date: Tue, 19 May 2026 14:45:58 +0200 Subject: [PATCH] Adapt build script to automatically opening quickfix --- build.sh | 23 +++++------------------ 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/build.sh b/build.sh index 631a22b..f2e55b6 100755 --- a/build.sh +++ b/build.sh @@ -2,43 +2,30 @@ clear -header() { - - echo "" - echo "" - echo "================================================================================" - echo "================================================================================" - echo " [[ $1 ]]" - echo "================================================================================" - echo "================================================================================" - echo "" - echo "" -} - if [ $1 = "build" ]; then - header "Building" + echo "Building" make main -B elif [ $1 = "run" ]; then - header "Running" + echo "Running" make main ./output/main 5000 ./library "Testing library" elif [ $1 = "debug" ]; then - header "Debugging" + echo "Debugging" make main gf2 ./output/main elif [ $1 = "clean" ]; then - header "Cleaning" + echo "Cleaning" rm -rf ./output/ else - header "Invalid command." + echo "Invalid command." fi