This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/master by this push:
new cd71ce0117 exclude occasional error log files
cd71ce0117 is described below
commit cd71ce0117dcb320a6e50fd343f72c45995d1888
Author: Paul King <[email protected]>
AuthorDate: Mon Aug 14 18:12:46 2023 +1000
exclude occasional error log files
---
build-logic/src/main/groovy/org.apache.groovy-common.gradle | 1 +
1 file changed, 1 insertion(+)
diff --git a/build-logic/src/main/groovy/org.apache.groovy-common.gradle
b/build-logic/src/main/groovy/org.apache.groovy-common.gradle
index d518274011..4665e3cffc 100644
--- a/build-logic/src/main/groovy/org.apache.groovy-common.gradle
+++ b/build-logic/src/main/groovy/org.apache.groovy-common.gradle
@@ -58,6 +58,7 @@ tasks.named('rat') {
'**/jquery-2.1.1.min.js', // MIT license as per NOTICE/LICENSE
files
'.classpath', '.project', '.settings/**', 'bin/**', // Eclipse
files
'bootstrap/settings.gradle', // empty file
+ '**/hs_err_pid**.log', // sometimes left over error files
'.jqwik-database'
]
}