created install & test flag

This flag basically does the same as 'install' and 'test' combined :D
This commit is contained in:
Václav Šmejkal 2022-05-02 18:05:12 +02:00
parent b3e444e2d9
commit da03b85b9c

@ -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