1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 10:58:59 +00:00
trezor-firmware/tools/clang-format-check
2019-09-12 17:35:55 +02:00

15 lines
360 B
Bash
Executable File

#!/usr/bin/env bash
error=0
for f in $*; do
changes=$(clang-format -output-replacements-xml "$f" | grep -c '^<replacement '; exit ${PIPESTATUS[0]})
if [ "$?" -ne "0" ]; then
echo "clang-format failed"
exit 1
fi
if test "$changes" -gt 0; then
echo "$f ... $changes changes needed"
error=1
fi
done
exit $error