mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-03-03 02:33:53 +08:00
16 lines
241 B
Bash
Executable File
16 lines
241 B
Bash
Executable File
#!/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
|
|
|