We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7a7a16 commit 6af2674Copy full SHA for 6af2674
clang/utils/ci/run-buildbot
@@ -70,7 +70,11 @@ ninja --version
70
71
case "${BUILDER}" in
72
check-format)
73
- ! grep -rnI '[[:blank:]]$' clang/lib clang/include clang/docs
+ echo "*** Checking for trailing whitespace left in Clang source files ***"
74
+ if grep -rnI '[[:blank:]]$' clang/lib clang/include clang/docs; then
75
+ echo "*** Trailing whitespace has been found in Clang source files as described above ***"
76
+ exit 1
77
+ fi
78
;;
79
build-clang)
80
mkdir install
0 commit comments