aboutsummaryrefslogtreecommitdiff
path: root/scripts/check_code_format.sh
diff options
context:
space:
mode:
authorMike Schuchardt <mikes@lunarg.com>2018-04-05 22:44:05 -0600
committerMark Lobodzinski <mark@lunarg.com>2018-04-06 10:45:21 -0600
commit8eb6c2a465549af248f2673ad6e0b3d3edd9e041 (patch)
tree613b66c8088e5c4d3f9123b710b7cbaac3682621 /scripts/check_code_format.sh
parent3a4ca3c9dfd29cce96eb1a197ebd53a29185a6b9 (diff)
downloadusermoji-8eb6c2a465549af248f2673ad6e0b3d3edd9e041.tar.xz
scripts: exclude vulkan headers from clang-format
Travis CI shows linux build failure on every header update because upstream Vulkan-Docs files are not formatted with the clang-format style of this repo. This change excludes the vulkan headers directory from the CI clang-format check. Change-Id: I6d1bee486d06b690f65aa2c3098de14f3c5931c9
Diffstat (limited to 'scripts/check_code_format.sh')
-rwxr-xr-xscripts/check_code_format.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check_code_format.sh b/scripts/check_code_format.sh
index 0a9a50ae..dde43794 100755
--- a/scripts/check_code_format.sh
+++ b/scripts/check_code_format.sh
@@ -22,7 +22,7 @@ RED='\033[0;31m'
GREEN='\033[0;32m'
NC='\033[0m' # No Color
-FILES_TO_CHECK=$(git diff --name-only master | grep -E ".*\.(cpp|cc|c\+\+|cxx|c|h|hpp)$")
+FILES_TO_CHECK=$(git diff --name-only master | grep -v -E "^include/vulkan" | grep -E ".*\.(cpp|cc|c\+\+|cxx|c|h|hpp)$")
if [ -z "${FILES_TO_CHECK}" ]; then
echo -e "${GREEN}No source code to check for formatting.${NC}"