Skip to content
Snippets Groups Projects
Commit 88e57487 authored by Martine Lenders's avatar Martine Lenders Committed by GitHub
Browse files

Merge pull request #7631 from smlng/tools/whitespace/ignore_vendor

tools: ignore vendor files on whitespace check
parents 30778697 49a4dda7
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,8 @@ ...@@ -6,6 +6,8 @@
# General Public License v2.1. See the file LICENSE in the top level # General Public License v2.1. See the file LICENSE in the top level
# directory for more details. # directory for more details.
NOVENDOR=":!*/include/vendor/*"
# If no branch but an option is given, unset BRANCH. # If no branch but an option is given, unset BRANCH.
# Otherwise, consume this parameter. # Otherwise, consume this parameter.
BRANCH="${1}" BRANCH="${1}"
...@@ -28,14 +30,14 @@ if [ -z "${BRANCH}" ]; then ...@@ -28,14 +30,14 @@ if [ -z "${BRANCH}" ]; then
fi fi
git -c core.whitespace="tab-in-indent,tabwidth=4" \ git -c core.whitespace="tab-in-indent,tabwidth=4" \
diff --check $(git merge-base ${BRANCH} HEAD) -- *.[ch] diff --check $(git merge-base ${BRANCH} HEAD) -- *.[ch] ${NOVENDOR}
RESULT=$? RESULT=$?
# Git regards any trailing white space except `\n` as an error so `\r` is # Git regards any trailing white space except `\n` as an error so `\r` is
# checked here, too # checked here, too
git -c core.whitespace="trailing-space" \ git -c core.whitespace="trailing-space" \
diff --check $(git merge-base ${BRANCH} HEAD) diff --check $(git merge-base ${BRANCH} HEAD) -- . ${NOVENDOR}
if [ $? -ne 0 ] || [ $RESULT -ne 0 ] if [ $? -ne 0 ] || [ $RESULT -ne 0 ]
then then
echo "ERROR: This change introduces new whitespace errors" echo "ERROR: This change introduces new whitespace errors"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment