This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 3d2caf76312 (chores) ci: set correct mvnw path in quick tests 3d2caf76312 is described below commit 3d2caf76312933f7204ea101a91f7745ff942349 Author: Nicolas Filotto <essob...@users.noreply.github.com> AuthorDate: Fri Jun 23 10:57:32 2023 +0200 (chores) ci: set correct mvnw path in quick tests --- .github/actions/quick-test/quick-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/quick-test/quick-test.sh b/.github/actions/quick-test/quick-test.sh index b9aca8ca392..76c01da8d01 100755 --- a/.github/actions/quick-test/quick-test.sh +++ b/.github/actions/quick-test/quick-test.sh @@ -102,7 +102,7 @@ function runTest() { echo "" echo "Logging test to ${logDir}/${component/\//-}.log" - ../../../mvnw -l "${logDir}/${component/\//-}.log" -Psourcecheck ${MVND_OPTS} verify + ./mvnw -l "${logDir}/${component/\//-}.log" -Psourcecheck ${MVND_OPTS} verify if [[ $? -ne 0 ]]; then ((failures++)) notifyError "${component} test" "${total}" "${current}" "${failures}"