mirror of
https://github.com/nasa/fpp.git
synced 2025-12-11 11:16:42 -06:00
12 lines
289 B
Bash
Executable File
12 lines
289 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
. ../../../../scripts/utils.sh
|
|
|
|
clean
|
|
rm -f default-tests.sh default-update-ref.sh
|
|
for file in `find . -not \( -path ./include -prune \)\
|
|
\( -name '*out.*' -o -name '*.names.txt' -o -name '*o' -o -name '*Ac.cpp' -o -name '*Ac.hpp' -o -name '*Ac.h' \)`
|
|
do
|
|
rm $file
|
|
done
|