Skip to content
Snippets Groups Projects
Commit 40ea8225 authored by Lucas De Marchi's avatar Lucas De Marchi
Browse files

reformat: remove mention to .pde files

We don't support them anymore.
parent 6bb90232
No related branches found
No related tags found
No related merge requests found
......@@ -21,12 +21,11 @@ function format_header {
do_commit $1
}
PDEFILES=`find $DIR -name '*.pde' -print`
CPPFILES=`find $DIR -name '*.cpp' -print`
CFILES=`find $DIR -name '*.c' -print`
HFILES=`find $DIR -name '*.h' -print`
for f in $PDEFILES $CPPFILES $CFILES; do
for f in $CPPFILES $CFILES; do
format_cpp $f
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment