Skip to content

Commit a5e8df2

Browse files
committed
travis: astyle anchor fix
Missing $ for after_success, same fix as previously done for PR code changes
1 parent 9aef9d3 commit a5e8df2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ matrix:
141141
after_success:
142142
# run astyle for all files on the branch
143143
- git checkout -- .
144-
- 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;
144+
- 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;
145145
# update status if we succeeded, compare with master if possible
146146
- |
147147
CURR=$(cat astyle-branch.out | grep Formatted | wc -l)

0 commit comments

Comments
 (0)