mirror of
https://github.com/nasa/fpp.git
synced 2025-12-10 00:40:22 -06:00
12 lines
153 B
Bash
Executable File
12 lines
153 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
cd `dirname $0`
|
|
|
|
. ./check_topology.sh
|
|
|
|
for dir in `find . -mindepth 1 -type d`
|
|
do
|
|
echo "checking $dir"
|
|
(cd $dir; check_topology)
|
|
done
|