Repository: yetus Updated Branches: refs/heads/master 1ced8a131 -> 44dc68943
YETUS-660. checkstyle should report when it fails to execute (addendum) Signed-off-by: Allen Wittenauer <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/yetus/repo Commit: http://git-wip-us.apache.org/repos/asf/yetus/commit/44dc6894 Tree: http://git-wip-us.apache.org/repos/asf/yetus/tree/44dc6894 Diff: http://git-wip-us.apache.org/repos/asf/yetus/diff/44dc6894 Branch: refs/heads/master Commit: 44dc6894342fb42fc6f069bfcdeca1b85c77b9c5 Parents: 1ced8a1 Author: jackbearden <[email protected]> Authored: Thu Aug 23 12:35:59 2018 -0700 Committer: Allen Wittenauer <[email protected]> Committed: Thu Aug 23 13:10:44 2018 -0700 ---------------------------------------------------------------------- precommit/test-patch.d/maven.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/yetus/blob/44dc6894/precommit/test-patch.d/maven.sh ---------------------------------------------------------------------- diff --git a/precommit/test-patch.d/maven.sh b/precommit/test-patch.d/maven.sh index dba0a2a..12fb239 100755 --- a/precommit/test-patch.d/maven.sh +++ b/precommit/test-patch.d/maven.sh @@ -586,7 +586,9 @@ function maven_precompile # but quite a few do ... # shellcheck disable=SC2086 for index in ${MAVEN_NEED_INSTALL}; do - need=true + if verify_needed_test "${index}"; then + need=true + fi done if [[ "${need}" = false ]]; then
