mirror of
https://github.com/nasa/fpp.git
synced 2025-12-11 03:05:32 -06:00
11 lines
228 B
Bash
Executable File
11 lines
228 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 '*out.*' -or -name '*o' -or -name '*Ac.cpp' -or -name '*Ac.hpp' -or -name '*Ac.h'`
|
|
do
|
|
rm $file
|
|
done
|