open source driving agent
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash -e
|
|
|
|
cd ../../board/
|
|
|
|
make -f Makefile.strict clean
|
|
make -f Makefile.strict bin 2> compiler_output.txt
|
|
|
|
|
|
if [[ -s "compiler_output.txt" ]]
|
|
then
|
|
echo "Found alerts from the compiler:"
|
|
cat compiler_output.txt
|
|
exit 1
|
|
fi
|
|
|
|
|