21 lines
433 B
Bash
Executable File
21 lines
433 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CLANG_FORMAT=clang-format-6.0
|
|
|
|
files_to_lint=$(find ./src ./lib -type f -name '*.c' -or -name '*.h')
|
|
|
|
fail=0
|
|
for f in ${files_to_lint}; do
|
|
d="$(diff -u "$f" <($CLANG_FORMAT -style=file "$f") || true)"
|
|
if ! [ -z "$d" ]; then
|
|
printf "The file %s is not compliant with the coding style:\n%s\n" "$f" "$d"
|
|
fail=1
|
|
fi
|
|
done
|
|
|
|
if [ "$fail" -eq "1" ]; then
|
|
if [ ! -z $ZMAP_ENFORCE_FORMAT ]; then
|
|
exit 1
|
|
fi
|
|
fi
|