mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-25 22:40:17 +00:00
Check clang-format during pre-commit
Users who do not have clang-format installed were not able to push commits. This patch gives better feedback to the developer by explicitely telling the user to install the package.
This commit is contained in:
parent
958e81404b
commit
97b403ebe7
@ -25,6 +25,13 @@ END
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if ! hash "clang-format" 2> /dev/null; then
|
||||||
|
cat<<END
|
||||||
|
Error: You must have clang-format installed on your system for codestyle checking purposes.
|
||||||
|
END
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
for f in $(git diff --name-only --diff-filter=ACMRTUXB --cached); do
|
for f in $(git diff --name-only --diff-filter=ACMRTUXB --cached); do
|
||||||
if ! echo "$f" | egrep -q "[.](cpp|h)$"; then
|
if ! echo "$f" | egrep -q "[.](cpp|h)$"; then
|
||||||
continue
|
continue
|
||||||
|
Loading…
Reference in New Issue
Block a user