diff options
author | Tobias Grosser <tobias@grosser.es> | 2013-11-22 11:44:15 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2013-11-22 11:44:15 +0000 |
commit | e264111bda4aabd61123efab7c77c110af94f54c (patch) | |
tree | 3101fa0b06b61cdcc4d076f6bfeaf569cda35381 | |
parent | 5bf5e31c5aff9c687193bef371a5e2a58e3010d7 (diff) | |
download | bcm5719-llvm-e264111bda4aabd61123efab7c77c110af94f54c.tar.gz bcm5719-llvm-e264111bda4aabd61123efab7c77c110af94f54c.zip |
Disable formatting checks to silent buildbots
Sorry for the noice.
llvm-svn: 195446
-rwxr-xr-x | polly/utils/check_format.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/polly/utils/check_format.sh b/polly/utils/check_format.sh index 671d15e0045..d87e00dc2e0 100755 --- a/polly/utils/check_format.sh +++ b/polly/utils/check_format.sh @@ -2,7 +2,8 @@ if ! which clang-format; then echo "Error: cannot find clang-format in your path" - exit 1 + # Do not fail. This is a temporary fix to silence buildbots. + exit 0 fi OK=0 |