From a5e8df25a18cf137997e32d303746b869037ef16 Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Tue, 20 Nov 2018 13:12:11 +0000 Subject: [PATCH] travis: astyle anchor fix Missing $ for after_success, same fix as previously done for PR code changes --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c4abf81f7c..dc3c2fdb09 100644 --- a/.travis.yml +++ b/.travis.yml @@ -141,7 +141,7 @@ matrix: after_success: # run astyle for all files on the branch - git checkout -- . - - find -regex '.*\.\(h\|c\|hpp\|cpp\)' -type f | fgrep -v -f .astyleignore | xargs -n 100 -I {} bash -c "astyle -n --options=.astylerc \"{}\"" > astyle-branch.out; + - find -regex '.*\.\(h\|c\|hpp\|cpp\)$' -type f | fgrep -v -f .astyleignore | xargs -n 100 -I {} bash -c "astyle -n --options=.astylerc \"{}\"" > astyle-branch.out; # update status if we succeeded, compare with master if possible - | CURR=$(cat astyle-branch.out | grep Formatted | wc -l)