Skip to content

Commit fde1e29

Browse files
committed
show-spring-boot-version-diff.sh: don't return number of dependencies in the return code.
1 parent 8104d3a commit fde1e29

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ after_failure:
5050

5151
after_success:
5252
- if [ "$SPRING_PROFILES_ACTIVE" = 'travis' ]; then
53-
./src/main/scripts/show-spring-boot-version-diff.sh || true;
53+
./src/main/scripts/show-spring-boot-version-diff.sh;
5454
fi
5555
- if [ "$SPRING_PROFILES_ACTIVE" = 'travis' ]; then
5656
./src/main/scripts/ci/publish-code-coverage.sh;

src/main/scripts/show-spring-boot-version-diff.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ join \
3030
}
3131
}
3232
END {
33-
printf("\nTotal:\t%d dependencies differ by versions\n", cnt);
34-
exit cnt
33+
printf("\nTotal:\t%d dependencies differ by versions\n", cnt)
3534
}'
3635

0 commit comments

Comments
 (0)