diff --git a/build.sh b/build.sh index bc2c696..263b4c6 100644 --- a/build.sh +++ b/build.sh @@ -94,10 +94,15 @@ elif [[ "$1" == "install" ]]; then ########## INSTALL ########## ### rm -rf *.o -else ########## ERR ########## - ### - echo "You have to enter 'test' or 'install' as arguments." - ### +else ########## ELSE ########## + if [[ "$1" == "installTest" ]]; then ########## INSTALL & TEST ########## + ./build.sh install + ./build.sh test + else ########## ERR ########## + ### + echo "You have to enter 'test' or 'install' as arguments." + ### - exit 1 + exit 1 + fi fi \ No newline at end of file