mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
9 lines
253 B
Bash
9 lines
253 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# Helper to run clang-tidy to perform some additional checks.
|
||
|
|
||
|
FILES=`find lib -name '*.c'`
|
||
|
INCLUDES="-Iinclude -Ilib `pkg-config fuse3 --cflags` `pkg-config libwebsockets --cflags`"
|
||
|
|
||
|
clang-tidy -header-filter='.*' ${FILES} -- ${INCLUDES}
|