mirror of
https://github.com/nasa/fpp.git
synced 2025-12-10 00:40:22 -06:00
13 lines
166 B
Bash
Executable File
13 lines
166 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
cd `dirname $0`
|
|
|
|
. ../../../scripts/utils.sh
|
|
|
|
for target in `find . -mindepth 2 -name clean`
|
|
do
|
|
dir=`dirname $target`
|
|
(cd $dir; ./clean)
|
|
done
|
|
clean
|