fix typo in clang-format helper script

This commit is contained in:
Andre Puschmann 2020-07-15 10:41:56 +02:00
parent 5cf2089a8c
commit 5b2d1b609b
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ fi
target=$1
echo "Running code format check between ${target} and ${commit} .."
echo "Running code format check between current state and ${target} .."
# run clang-format
diff="$(git diff -U0 ${target} | clang-format-diff -p1 | python3 -c 'data = open(0).read(); print(data); exit(1 if data else 0)')"