From 709e36f38afa74a0e4b92b912947886563af12a8 Mon Sep 17 00:00:00 2001 From: Cruz Monrreal II Date: Mon, 25 Mar 2019 19:43:34 -0500 Subject: [PATCH] Updated astyle to work with updated .astyleignore file fgrep === grep -F -F treats lines as fixed strings (aka, the '^' isn't expanded) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 20b0c816df..dec09cb8ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -183,7 +183,7 @@ matrix: - >- git diff --name-only --diff-filter=d FETCH_HEAD..HEAD \ | ( grep '.\(c\|cpp\|h\|hpp\)$' || true ) \ - | ( fgrep -v -f .astyleignore || true ) \ + | ( grep -v -f .astyleignore || true ) \ | while read file; do astyle -n --options=.astylerc "${file}"; done - git diff --exit-code --diff-filter=d --color