Added missing semicolons
This commit is contained in:
parent
be95be16d7
commit
c242c2cb2c
1 changed files with 2 additions and 2 deletions
|
@ -30,10 +30,10 @@ script:
|
|||
status = $(arduino --verify --board $BOARD $PWD/${d%/}/${d%/}.ino 2>&1);
|
||||
if [ $status -ne 0 ]; then
|
||||
# example build failed
|
||||
echo -e "\033[0;31m${d%/} build failed"
|
||||
echo -e "\033[0;31m${d%/} build failed";
|
||||
return $status;
|
||||
else
|
||||
# example build succeeded
|
||||
echo -e "\033[0;32m${d%/} build passed"
|
||||
echo -e "\033[0;32m${d%/} build passed";
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Add table
Reference in a new issue