summaryrefslogtreecommitdiff
path: root/clang-format-diff.sh
blob: 53020e59bf5b34f9af7b1378954740e60a972b16 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
MERGE_BASE=$(git merge-base master HEAD)
FORMAT_MSG=$(git clang-format $MERGE_BASE -q --diff -- src/)
if [ -n "$FORMAT_MSG" -a "$FORMAT_MSG" != "no modified files to format" ]
then
  echo "Run git clang-format before committing!"
  echo
  # Run git clang-format once again to show the error
  git clang-format $MERGE_BASE -q --diff -- src/
  exit 1
fi