From 658d106fcec9d166ea87fd7318339bec0350c10f Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Mon, 23 Mar 2015 09:21:06 +0100 Subject: [PATCH] fix travis config with regards to clang-format --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5876ae62..ebabbfaf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -44,4 +44,4 @@ install: script: - make -j - (cd testcases && xvfb-run ./complete-run.pl --parallel=1 || (cat latest/complete-run.log; false)) - - clang-format-3.5 -i **/*.[ch] && git diff --exit-code || (echo 'Code was not formatted using clang-format!'; false) + - clang-format-3.5 -i $(find . -name "*.[ch]" | tr '\n' ' ') && git diff --exit-code || (echo 'Code was not formatted using clang-format!'; false) -- 2.39.5