summaryrefslogtreecommitdiff
path: root/clang-tidy-diff.sh
diff options
context:
space:
mode:
Diffstat (limited to 'clang-tidy-diff.sh')
-rwxr-xr-xclang-tidy-diff.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tidy-diff.sh b/clang-tidy-diff.sh
index ac9de4007..931ad1a11 100755
--- a/clang-tidy-diff.sh
+++ b/clang-tidy-diff.sh
@@ -5,7 +5,7 @@ MERGE_BASE=$(git merge-base master HEAD)
TIDY_MSG=$(git diff -U0 $MERGE_BASE | $CLANG_TIDY_DIFF -quiet -p1 2> /dev/null)
if [ -n "$TIDY_MSG" -a "$TIDY_MSG" != "No relevant changes found." ]
then
- echo "Run clang-tidy before committing!"
+ echo "Fix clang-tidy errors before committing!"
echo
# Run clang-tidy once again to show the error
git diff -U0 $MERGE_BASE | $CLANG_TIDY_DIFF -quiet -p1