e19b1850e1
A lot of distributions are emitting warnings when using egrep and fgrep since these are deprecated. Update occurrences of egrep to 'grep -E' keeping the same functionality and making the code more portable without emitting warnings.
22 lines
607 B
Bash
Executable File
22 lines
607 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SOURCES=$(find $(git rev-parse --show-toplevel) | grep -E "\.(cpp|cc|c|h)\$")
|
|
|
|
CLANG_FORMAT=$(which clang-format-12)
|
|
if [ $? -ne 0 ]; then
|
|
CLANG_FORMAT=$(which clang-format)
|
|
if [ $? -ne 0 ]; then
|
|
echo "[!] clang-format not installed. Unable to check source file format policy." >&2
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
set -x
|
|
|
|
for file in ${SOURCES};
|
|
do
|
|
$CLANG_FORMAT ${file} > expected-format
|
|
diff -u -p --label="${file}" --label="expected coding style" ${file} expected-format
|
|
done
|
|
exit $($CLANG_FORMAT --output-replacements-xml ${SOURCES} | grep -E -c "</replacement>")
|