mirror of
https://github.com/nasa/fpp.git
synced 2025-12-10 15:36:19 -06:00
17 lines
266 B
Bash
Executable File
17 lines
266 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Ensure the script can be run from any directory
|
|
wd=`dirname $0`
|
|
cd $wd
|
|
|
|
. scripts/utils.sh
|
|
|
|
./fpp-sbt clean
|
|
rm -rf bin native-fpp-* test-output.txt
|
|
clean
|
|
for file in `find . -mindepth 2 -name clean`
|
|
do
|
|
dir=`dirname $file`
|
|
(cd $dir; ./clean)
|
|
done
|