We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 28d5477 + 84469e1 commit c3077d2Copy full SHA for c3077d2
.travis.yml
@@ -144,9 +144,12 @@ matrix:
144
export PATH=$PWD/bin:$PATH;
145
cd -
146
- astyle --version
147
+ # Fetch remaining information needed for branch comparison
148
+ - git fetch --all --unshallow --tags
149
+ - git fetch origin "${TRAVIS_BRANCH}"
150
script:
151
- >-
- git diff --name-only --diff-filter=d HEAD..${TRAVIS_BRANCH} \
152
+ git diff --name-only --diff-filter=d FETCH_HEAD..HEAD \
153
| ( grep '.\(c\|cpp\|h\|hpp\)$' || true ) \
154
| ( fgrep -v -f .astyleignore || true ) \
155
| while read file; do astyle -n --options=.astylerc "${file}"; done
0 commit comments