2023-06-26 17:18:28 -07:00

11 lines
177 B
Bash
Executable File

#!/bin/sh -e
. ../../../../scripts/utils.sh
for target in `find . -mindepth 2 -name check-cpp`
do
dir=`dirname $target`
echo "[ $dir ]"
(cd $dir; ./check-cpp "$@")
done