X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=reindent.sh;h=0233d0c38ad9cfcfeb87ef248880f5252068fcaa;hb=f1e8985920d28b05e14826384379863517acb483;hp=5746abc26b67e071d7e20fe7943f6374bc6d886c;hpb=675c2b2251aa4546746c7d0a082752ea30d980f6;p=kdenlive diff --git a/reindent.sh b/reindent.sh index 5746abc2..0233d0c3 100755 --- a/reindent.sh +++ b/reindent.sh @@ -1,13 +1,15 @@ #! /bin/sh -FILES="`find -type f -wholename './src/*.cpp'` `find -type f -wholename './src/*.h'` `find -type f -wholename './renderer/*.cpp'` `find -type f -wholename './renderer/*.h'` `find -type f -wholename './plugins/*.cpp'` `find -type f -wholename './plugins/*.h'`" +SRCDIRS="src plugins renderer thumbnailer" if [ $# -gt 0 ] then FILES=$@ +else + FILES=$(find $SRCDIRS -type f -name \*.cpp -o -name \*.h) fi -astyle --indent=spaces=4 --brackets=attach \ +astyle --indent=spaces=4 --brackets=linux \ --indent-labels --unpad=paren \ --pad=oper --convert-tabs \ --indent-preprocessor \ @@ -19,7 +21,7 @@ read del if [ "x${del}" = "xy" ] then echo "removing .orig files" - find src -iname "*.orig" -exec rm {} ";" + find $SRCDIRS -iname "*.orig" -exec rm {} ";" else echo "Not deleting .orig files" fi