Sign in
pigweed
/
third_party
/
github
/
raspberrypi
/
pico-sdk
/
HEAD
/
.
/
tools
/
check_all_board_headers.sh
blob: 29092179114e2ca94e73559f8e4bb8c7792cc65b [
file
] [
log
] [
blame
]
#!/bin/bash
EXIT_CODE
=
0
for
HEADER
in
src
/
boards
/
include
/
boards
/*.
h
;
do
tools
/
check_board_header
.
py $HEADER
if
[[
$
?
-
ne
0
]];
then
EXIT_CODE
=
1
fi
done
exit $EXIT_CODE