This is an automated email from the ASF dual-hosted git repository. rnewson pushed a commit to branch lucene-10-again in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 72a51702fa3483a966bf1be1bef623db83a75ffb Author: Robert Newson <[email protected]> AuthorDate: Fri Aug 8 22:58:02 2025 +0100 enable assertions while running nouveau --- nouveau/build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nouveau/build.gradle b/nouveau/build.gradle index 8e5bb84d2..43785f604 100644 --- a/nouveau/build.gradle +++ b/nouveau/build.gradle @@ -90,7 +90,10 @@ tasks.withType(AbstractArchiveTask) { reproducibleFileOrder = true } - startScripts { enabled = false } + +run { + enableAssertions = true +}
