forked from Archive/PX4-Autopilot
check_code_style only enforce src/systemcmds and src/examples
This commit is contained in:
parent
66cd25d3ef
commit
0145f95e7d
|
@ -1,7 +1,9 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -eu
|
set -eu
|
||||||
failed=0
|
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 './mavlink' -prune -o \
|
||||||
-path './NuttX' -prune -o \
|
-path './NuttX' -prune -o \
|
||||||
-path './src/lib/eigen' -prune -o \
|
-path './src/lib/eigen' -prune -o \
|
||||||
|
|
Loading…
Reference in New Issue