mirror of https://github.com/ArduPilot/ardupilot
reformat: remove mention to .pde files
We don't support them anymore.
This commit is contained in:
parent
6bb9023221
commit
40ea8225b6
|
@ -21,12 +21,11 @@ function format_header {
|
||||||
do_commit $1
|
do_commit $1
|
||||||
}
|
}
|
||||||
|
|
||||||
PDEFILES=`find $DIR -name '*.pde' -print`
|
|
||||||
CPPFILES=`find $DIR -name '*.cpp' -print`
|
CPPFILES=`find $DIR -name '*.cpp' -print`
|
||||||
CFILES=`find $DIR -name '*.c' -print`
|
CFILES=`find $DIR -name '*.c' -print`
|
||||||
HFILES=`find $DIR -name '*.h' -print`
|
HFILES=`find $DIR -name '*.h' -print`
|
||||||
|
|
||||||
for f in $PDEFILES $CPPFILES $CFILES; do
|
for f in $CPPFILES $CFILES; do
|
||||||
format_cpp $f
|
format_cpp $f
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue