mirror of
https://github.com/nasa/fpp.git
synced 2025-12-10 00:40:22 -06:00
11 lines
212 B
Bash
Executable File
11 lines
212 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
. ../../../../scripts/utils.sh
|
|
|
|
clean
|
|
rm -f default-tests.sh default-update-ref.sh
|
|
for file in `find . -name '*o' -or -name '*Ac.hpp' -or -name '*Ac.cpp' -or -name '*.names.txt'`
|
|
do
|
|
rm $file
|
|
done
|