diff --git a/Makefile b/Makefile index 6962b5e..2fefdfa 100644 --- a/Makefile +++ b/Makefile @@ -74,8 +74,9 @@ clean: check: # Search the execution log for mention of raylib starting + cat $(tempDir)/execute.log $(eval VAR = $(shell grep -c "raylib" $(tempDir)/execute.log)) - if [[ $(VAR) -gt 0 ]];\ + if [ $(VAR) -gt 0 ];\ then echo "Application was started";\ else echo "Application failed to start"; exit 1;\ fi