1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-30 09:39:49 +02:00

Changed STATUS_ defines to enum class Error (#584)

* Changed STATUS_ defines  to enum class Error

* Added license blocks to new files

* Suppress  Compiling..Error.cpp  build script output

The filters that look for errors in the output were
triggering on the filename Error.cpp
This commit is contained in:
Mitch Bradley
2020-09-08 12:54:21 -10:00
committed by GitHub
parent 0e4013c472
commit 94b6feecce
22 changed files with 524 additions and 480 deletions

View File

@@ -10,7 +10,7 @@ trap "echo; exit 255" SIGINT
if [ "$1" = "-v" ]; then
FILTER="cat"
else
FILTER="grep error\|Took"
FILTER="grep -v Compiling | grep error\|Took"
fi
set -o pipefail
NUM_ERRORS=0