check_code_style only enforce src/systemcmds and src/examples

This commit is contained in:
Daniel Agar 2015-09-05 12:20:59 -04:00
parent 66cd25d3ef
commit 0145f95e7d
1 changed files with 3 additions and 1 deletions

View File

@ -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 \