| Andrew Jeffery | f5afcd7 | 2020-05-11 13:13:18 +0930 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |||||
| 3 | : ${CLANG_FORMAT:=clang-format} | ||||
| 4 | |||||
| 5 | FILES=$(comm -3 <(sort .clang-ignore) <(git ls-files | grep '.*\.[ch]$' | sort)) | ||||
| 6 | |||||
| 7 | if [ -n "$FILES" ] | ||||
| 8 | then | ||||
| 9 | $CLANG_FORMAT -style=file -i $FILES | ||||
| 10 | fi | ||||