From 0145f95e7d97664082d8d76351e1e92c685f7b84 Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Sat, 5 Sep 2015 12:20:59 -0400 Subject: [PATCH] check_code_style only enforce src/systemcmds and src/examples --- Tools/check_code_style.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Tools/check_code_style.sh b/Tools/check_code_style.sh index 87e9e4f232..d123b3623c 100755 --- a/Tools/check_code_style.sh +++ b/Tools/check_code_style.sh @@ -1,7 +1,9 @@ #!/usr/bin/env bash set -eu failed=0 -for fn in $(find . -path './Build' -prune -o \ +for fn in $(find src/examples \ + src/systemcmds \ + -path './Build' -prune -o \ -path './mavlink' -prune -o \ -path './NuttX' -prune -o \ -path './src/lib/eigen' -prune -o \