1#!/bin/bash 2for HEADER in src/boards/include/boards/*.h; do 3 tools/check_board_header.py $HEADER 4 if [[ $? -ne 0 ]]; then 5 break 6 fi 7done 8