This is an automated email from the ASF dual-hosted git repository. matrei pushed a commit to branch 4.0.x in repository https://gitbox.apache.org/repos/asf/grails-quartz.git
The following commit(s) were added to refs/heads/4.0.x by this push: new 7014e91 [skip ci] fix: add workaround in `verify.sh` (#155) 7014e91 is described below commit 7014e91da88574ad2cc5f9426c3f2aebca85212c Author: Mattias Reichel <mat...@apache.org> AuthorDate: Fri Jul 25 17:00:27 2025 +0200 [skip ci] fix: add workaround in `verify.sh` (#155) When running `verify.sh` in a container built from the Dockerfile, Gradle fails during the `gradle-bootstrap` step with the error: Build cache controller already set Adding `--no-build-cache` flag works around this problem for now. --- etc/bin/verify.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/bin/verify.sh b/etc/bin/verify.sh index cb0141d..9d7f891 100755 --- a/etc/bin/verify.sh +++ b/etc/bin/verify.sh @@ -71,7 +71,7 @@ else echo "ERROR: Neither gradlew nor gradle found on \$PATH." >&2 exit 1 fi -${GRADLE_CMD} +${GRADLE_CMD} --no-build-cache echo "✅ Gradle Bootstrapped" echo "Applying License Audit ..."