2023-08-29 17:50:43 -07:00

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