mirror of
https://github.com/nasa/fpp.git
synced 2025-12-11 11:16:42 -06:00
11 lines
186 B
Bash
Executable File
11 lines
186 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
. ../../../scripts/utils.sh
|
|
|
|
for target in `find . -mindepth 2 -maxdepth 2 -name check-cpp`
|
|
do
|
|
dir=`dirname $target`
|
|
echo "[ $dir ]"
|
|
(cd $dir; ./check-cpp "$@")
|
|
done
|