summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2017-06-22 23:55:53 -0400
committeryenatch <yenatch@gmail.com>2017-06-22 23:56:32 -0400
commit5e786fcdd9f414eb9614331ea13af21de6f667d0 (patch)
tree5be32e650909ccbfdf66e25a9758ad4570ffed38
parenteffc14bdc9b52f1075f36c207c459689bbe18d79 (diff)
travis: Don't fail if clang-format fails
-rwxr-xr-x.travis/check-git-clang-format-output.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/check-git-clang-format-output.sh b/.travis/check-git-clang-format-output.sh
index c53efa726..e6acf8ced 100755
--- a/.travis/check-git-clang-format-output.sh
+++ b/.travis/check-git-clang-format-output.sh
@@ -17,5 +17,5 @@ if [ "$output" == "no modified files to format" ] || [ "$output" == "clang-forma
else
echo "clang-format failed:"
echo "$output" | colordiff
- exit 1
+ exit 0
fi