Skip to content

Commit

Permalink
reformat: remove mention to .pde files
Browse files Browse the repository at this point in the history
We don't support them anymore.
  • Loading branch information
lucasdemarchi committed May 8, 2016
1 parent 6bb9023 commit 40ea822
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions reformat.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 40ea822

Please sign in to comment.