From 2deeef65ad6d634bdfbcdd94ee367110fff0bebf Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Wed, 10 May 2017 12:07:26 -0700 Subject: [PATCH] Update path filter for uncrustify Signed-off-by: Patrick McCarty --- scripts/source-indent.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/source-indent.sh b/scripts/source-indent.sh index d883395..65b246b 100755 --- a/scripts/source-indent.sh +++ b/scripts/source-indent.sh @@ -14,6 +14,6 @@ if [ "$?" -ne 0 ]; then exit 1 fi -find .. -path "../*/*.[ch]" -exec uncrustify {} -c tm.cfg --no-backup \; +find .. -path "../*/*.[ch]" ! -path "../src/nica/*" -exec uncrustify {} -c tm.cfg --no-backup \; # vi: ts=8 sw=2 sts=2 et tw=80